1
0
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:
SteveDaulton 2021-07-18 23:31:02 +01:00 committed by Paul Licameli
parent 4facbd939d
commit b1b6b0645d

View File

@ -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)