added missing space in log message

This commit is contained in:
Andreas Preikschat 2013-03-19 19:57:44 +01:00
parent 147cfccd04
commit 8a97088526

View File

@ -79,7 +79,7 @@ class PhononPlayer(MediaPlayer):
self._addToList(self.video_extensions_list, mimetype) self._addToList(self.video_extensions_list, mimetype)
# Work around for http://bugs.python.org/issue9291 # Work around for http://bugs.python.org/issue9291
except UnicodeDecodeError: except UnicodeDecodeError:
log.exception(u'UnicodeDecodeError when trying to read mime types.' log.exception(u'UnicodeDecodeError when trying to read mime types. '
'Setting extensions to all files') 'Setting extensions to all files')
self.audio_extensions_list = [u'*.*'] self.audio_extensions_list = [u'*.*']
self.video_extensions_list = [u'*.*'] self.video_extensions_list = [u'*.*']