mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 16:10:06 +02:00
Fix typo in pipeclient.py
Typo slipped in with commit d31db975ee
This commit is contained in:
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user