diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-18 15:44:55 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-18 15:44:55 +0100 |
commit | 93bfee64320aa39c06254975bc79f4796e6a7973 (patch) | |
tree | b3284388f728e8674c2ea73d8e0962f6203d589b /module/plugins/hooks/XFileSharingPro.py | |
parent | [ExternalScripts] Fix https://github.com/pyload/pyload/issues/1233 (diff) | |
download | pyload-93bfee64320aa39c06254975bc79f4796e6a7973.tar.xz |
[XFileSharingPro] Fix typo
Diffstat (limited to 'module/plugins/hooks/XFileSharingPro.py')
-rw-r--r-- | module/plugins/hooks/XFileSharingPro.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/XFileSharingPro.py b/module/plugins/hooks/XFileSharingPro.py index 69a49fba0..54b1e27e6 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.34" + __version__ = "0.35" __config__ = [("activated" , "bool", "Activated" , True ), ("use_hoster_list" , "bool", "Load listed hosters only" , False), @@ -41,7 +41,7 @@ class XFileSharingPro(Hook): CRYPTER_BUILTIN = ["junocloud.me", "rapidfileshare.net"] - def pluginConfigChanged(self.__name__, plugin, name, value): + def pluginConfigChanged(self, plugin, name, value): self.loadPattern() |