From 72efc0b10190bd7ea74fafe2e7c81f76b02dc988 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 5 Aug 2021 00:26:36 +0200 Subject: [PATCH] raw_input() was removed from Python on 1/1/2020 --- patator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patator.py b/patator.py index 6c67b9a..bb1b003 100755 --- a/patator.py +++ b/patator.py @@ -2230,7 +2230,7 @@ Please read the README inside for more examples and usage information. command = msvcrt.getche() if command == 'x': - command += raw_input() + command += input() else: i, _, _ = select([sys.stdin], [], [], .1)