Skip to content

Commit

Permalink
Merge pull request lanjelot#165 from cclauss/patch-1
Browse files Browse the repository at this point in the history
raw_input() was removed from Python on 1/1/2020
  • Loading branch information
lanjelot authored Jan 7, 2022
2 parents a93ae7a + 72efc0b commit 8d00e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,7 @@ def read_command():

command = msvcrt.getche()
if command == 'x':
command += raw_input()
command += input()

else:
i, _, _ = select([sys.stdin], [], [], .1)
Expand Down

0 comments on commit 8d00e46

Please sign in to comment.