mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
committed by
Paul Licameli
parent
4facbd939d
commit
b1b6b0645d
@@ -272,10 +272,9 @@ def main():
|
||||
while True:
|
||||
reply = ''
|
||||
if sys.version_info[0] < 3:
|
||||
message = input("\nEnter command or 'Q' to quit: ")
|
||||
message = raw_input("\nEnter command or 'Q' to quit: ")
|
||||
else:
|
||||
message = input(
|
||||
"\nEnter command or 'Q' to quit: ")
|
||||
message = input("\nEnter command or 'Q' to quit: ")
|
||||
start = time.time()
|
||||
if message.upper() == 'Q':
|
||||
sys.exit(0)
|
||||
|
||||
Reference in New Issue
Block a user