mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
Added a condition in prompt_yes_or_no() to use input or raw_input
This commit is contained in:
parent
d1d5d84e4c
commit
dde3acf109
@ -48,8 +48,16 @@ def editor():
|
||||
|
||||
def prompt_yes_or_no(question):
|
||||
""" Prompts the user with a yes-or-no question """
|
||||
# Support Python 2 and 3 input
|
||||
# Default to Python 2's input()
|
||||
get_input = raw_input
|
||||
|
||||
# If this is Python 3, use input()
|
||||
if sys.version_info[:2] >= (3, 0):
|
||||
get_input = input
|
||||
|
||||
print(question)
|
||||
return raw_input('[y/n] ') == 'y'
|
||||
return get_input('[y/n] ') == 'y'
|
||||
|
||||
|
||||
def warn(message):
|
||||
|
Loading…
Reference in New Issue
Block a user