From aad367863ef5775e2a87f96a50552059bde41b95 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 23 Jul 2012 17:04:16 -0400 Subject: [PATCH] cc-4105: added todo comment --- python_apps/media-monitor2/media/monitor/toucher.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python_apps/media-monitor2/media/monitor/toucher.py b/python_apps/media-monitor2/media/monitor/toucher.py index 485f19677..98722005d 100644 --- a/python_apps/media-monitor2/media/monitor/toucher.py +++ b/python_apps/media-monitor2/media/monitor/toucher.py @@ -62,6 +62,7 @@ class ToucherThread(Loggable): def __init__(self, path, interval=5): if not os.path.exists(path): try: + # TODO : rewrite using with? f = open(path,'w') f.write('') f.close()