Fix raw_input error

spacecruft
Jeff Moe 2023-01-17 09:01:00 -07:00
parent ab3c4d1793
commit 1896692e45
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ sleep(0.5)
print("\n\033[1;32;48mEstimated completion time: \033[1;36;48m"+str(float(duration)*float(fmax-fmin)/float(bandwidth))+" sec")
sleep(0.5)
proceed = raw_input("\n\033[1;36;48mProceed to measurement? [Y/n]: \033[1;33;48m")
proceed = input("\n\033[1;36;48mProceed to measurement? [Y/n]: \033[1;33;48m")
if proceed.lower() != 'n' and proceed.lower() != 'no':
print('\n\033[1;33;48m+=================================================================+')