From aa8b107ab96af93382c28124a253535a0a556f9e Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Tue, 17 Jul 2012 11:48:05 -0400 Subject: [PATCH] Added todo comment --- python_apps/pypo/recorder.py | 3 +++ 1 file changed, 3 insertions(+) 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)