summaryrefslogtreecommitdiffstats
path: root/module/file_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/file_list.py')
-rw-r--r--module/file_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/file_list.py b/module/file_list.py
index 232f2b7ea..e7b80f26d 100644
--- a/module/file_list.py
+++ b/module/file_list.py
@@ -428,7 +428,7 @@ class PyLoadFile():
for dir in ["hoster", "decrypter", "container"]:
try:
self.modul = __import__("%s.%s" % (dir, pluginName), globals(), locals(), [pluginName], -1)
- except Exception, e:
+ except ImportError:
pass
pluginClass = getattr(self.modul, pluginName)
else: