fix time input in unlogger

pull/1123/head
Willem Melching 2020-02-26 10:27:16 -08:00
parent 327a255a1a
commit 5dcb0488c6
1 changed files with 1 additions and 1 deletions

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