From 5dcb0488c60e746cb87abd6e6ed59f2e82baeae9 Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Wed, 26 Feb 2020 10:27:16 -0800 Subject: [PATCH] fix time input in unlogger --- tools/replay/unlogger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/replay/unlogger.py b/tools/replay/unlogger.py index 2defe07360..374cd0992f 100755 --- a/tools/replay/unlogger.py +++ b/tools/replay/unlogger.py @@ -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))