Catch a previously uncaught NotImplementedError.

bzr-revno: 2000
Fixes: https://launchpad.net/bugs/1013215
This commit is contained in:
Raoul Snyman 2012-06-19 15:03:24 +02:00
commit 6a688ab845
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ VLC_AVAILABLE = False
try:
import vlc
VLC_AVAILABLE = bool(vlc.get_default_instance())
except (ImportError, NameError):
except (ImportError, NameError, NotImplementedError):
pass
except OSError, e:
if sys.platform.startswith('win'):