summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/XFileSharingPro.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-03 13:04:22 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-03 13:04:22 +0100
commit57e7d7049a569bc96e7bdf135a2d40df520cf3b3 (patch)
treecde1c391871c2e2799152a718626df188b7585b2 /module/plugins/hooks/XFileSharingPro.py
parent[PluginManager] Fix parse (diff)
downloadpyload-57e7d7049a569bc96e7bdf135a2d40df520cf3b3.tar.xz
[XFileSharingPro] Fix typo
Diffstat (limited to 'module/plugins/hooks/XFileSharingPro.py')
-rw-r--r--module/plugins/hooks/XFileSharingPro.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/XFileSharingPro.py b/module/plugins/hooks/XFileSharingPro.py
index c4205b34f..55fb5948a 100644
--- a/module/plugins/hooks/XFileSharingPro.py
+++ b/module/plugins/hooks/XFileSharingPro.py
@@ -8,7 +8,7 @@ from module.plugins.Hook import Hook
class XFileSharingPro(Hook):
__name__ = "XFileSharingPro"
__type__ = "hook"
- __version__ = "0.21"
+ __version__ = "0.22"
__config__ = [("activated", "bool", "Activated", True),
("use_hoster_list", "bool", "Load listed hosters only", False),
@@ -65,7 +65,7 @@ class XFileSharingPro(Hook):
if use_builtin_list:
plugin_list |= set([x.lower() for x in getattr(self, "%s_LIST" % type.upper())])
- plugin_list -= set(('', u'')
+ plugin_list -= set(('', u''))
if not plugin_list:
self.logInfo(_("No %s to handle") % type)