diff --git a/generator.py b/generator.py index 328e1ccdf..448c19bb7 100755 --- a/generator.py +++ b/generator.py @@ -34,10 +34,7 @@ def ask_yes_no_question(question, conf): if conf.yes: print(question + 'y') return True - if sys.version_info[0] < 3: - line = raw_input(question) - else: - line = input(question) + line = input(question) return line.strip().lower() == 'y'