mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 08:30: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:
|
while True:
|
||||||
reply = ''
|
reply = ''
|
||||||
if sys.version_info[0] < 3:
|
if sys.version_info[0] < 3:
|
||||||
message = input("\nEnter command or 'Q' to quit: ")
|
message = raw_input("\nEnter command or 'Q' to quit: ")
|
||||||
else:
|
else:
|
||||||
message = input(
|
message = input("\nEnter command or 'Q' to quit: ")
|
||||||
"\nEnter command or 'Q' to quit: ")
|
|
||||||
start = time.time()
|
start = time.time()
|
||||||
if message.upper() == 'Q':
|
if message.upper() == 'Q':
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user