cc-4235: removed some magic to find bug

This commit is contained in:
Rudi Grinberg 2012-08-16 10:26:57 -04:00
parent 1dbdadef62
commit a87a790ce6
5 changed files with 17 additions and 14 deletions

View file

@ -124,8 +124,9 @@ class WatchSyncer(ReportHandler,Loggable):
try:
# If there is a strange bug anywhere in the code the next line
# should be a suspect
if self.contractor.register( event ):
self.push_queue( event )
#if self.contractor.register( event ):
#self.push_queue( event )
self.push_queue( event )
except BadSongFile as e:
self.fatal_exception("Received bas song file '%s'" % e.path, e)
except Exception as e: