From ce5b3bba8ef5ade9a4a166e5336635daacd5a3ab Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Fri, 20 Jul 2012 17:52:51 -0400 Subject: [PATCH] cc-4105 removed the wrong stuff about normpaths. Rmoved some old code that I forgot to delete before. --- python_apps/media-monitor2/media/monitor/bootstrap.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python_apps/media-monitor2/media/monitor/bootstrap.py b/python_apps/media-monitor2/media/monitor/bootstrap.py index cfd53578f..dd50b2941 100644 --- a/python_apps/media-monitor2/media/monitor/bootstrap.py +++ b/python_apps/media-monitor2/media/monitor/bootstrap.py @@ -39,10 +39,9 @@ class Bootstrapper(Loggable): modded = deleted = 0 signal_by_path = dict( (pc.signal, pc.path) for pc in self.watch_channels ) for pc in self.watch_channels: - # TODO : fixed the inconsistencies regarding normpath songs[ pc.path ] = set() for f in mmp.walk_supported(pc.path, clean_empties=False): - songs[ pc.path ].add(os.path.normpath(f)) + songs[ pc.path ].add(f) # We decide whether to update a file's metadata by checking # its system modification date. If it's above the value # self.last_run which is passed to us that means media monitor