From ba37730538c57a3062f885238da2c63291c537ba Mon Sep 17 00:00:00 2001 From: Martin Zibricky Date: Sat, 15 Sep 2012 18:47:14 +0200 Subject: [PATCH] Remove cheching for non-existing file in media player code. --- openlp/core/ui/media/mediacontroller.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index 667a651c3..d56538331 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -111,8 +111,7 @@ class MediaController(object): if sys.platform == 'darwin' and filename == 'vlcplayer.py': log.warn(u'Disabling vlc media player') continue - if filename.endswith(u'player.py') and not \ - filename == 'media_player.py': # TODO This file was renamed. + if filename.endswith(u'player.py'): path = os.path.join(controller_dir, filename) if os.path.isfile(path): modulename = u'openlp.core.ui.media.' + \