MM2: Removed dead code path
This commit is contained in:
parent
7135fdbc3d
commit
970708bd23
|
@ -43,9 +43,6 @@ class RequestSync(threading.Thread,Loggable):
|
||||||
if isinstance(request, BadSongFile):
|
if isinstance(request, BadSongFile):
|
||||||
self.logger.info("Bad song file: '%s'" % request.path)
|
self.logger.info("Bad song file: '%s'" % request.path)
|
||||||
else: packed_requests.append(request)
|
else: packed_requests.append(request)
|
||||||
except BadSongFile as e:
|
|
||||||
self.logger.info("This should never occur anymore!!!")
|
|
||||||
self.logger.info("Bad song file: '%s'" % e.path)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.unexpected_exception( e )
|
self.unexpected_exception( e )
|
||||||
if hasattr(request_event, 'path'):
|
if hasattr(request_event, 'path'):
|
||||||
|
|
Loading…
Reference in New Issue