fix time input in unlogger

old-commit-hash: 5dcb0488c60e746cb87abd6e6ed59f2e82baeae9
This commit is contained in:
Willem Melching
2020-02-26 10:27:16 -08:00
parent 7db2f5b3d7
commit 541a39204a
+1 -1
View File
@@ -330,7 +330,7 @@ def keyboard_controller_thread(q, route_start_time):
q.send_pyobj(TogglePause())
elif c=="\n":
try:
seek_time_input = raw_input('time: ')
seek_time_input = input('time: ')
seek_time = absolute_time_str(seek_time_input, route_start_time)
q.send_pyobj(SeekAbsoluteTime(seek_time))