diff --git a/python_apps/pypo/recorder.py b/python_apps/pypo/recorder.py index e0c8bee0c..00d51c010 100644 --- a/python_apps/pypo/recorder.py +++ b/python_apps/pypo/recorder.py @@ -134,6 +134,9 @@ class ShowRecorder(Thread): try: date = self.start_time md = date.split(" ") + # TODO : rename 'time' variable to something better so that there + # is no naming conflicts with the time module that is being + # imported time = md[1].replace(":", "-") self.logger.info("time: %s" % time)