diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-11 01:04:07 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-11 01:04:07 +0100 |
commit | 1b2591b0650a6a0be1ad41022f6019d17192f195 (patch) | |
tree | dbd2158b96141ef9354b5cd5edaead28978d65e7 /pyload/plugins/hook/XFileSharingPro.py | |
parent | Support new key attributes (diff) | |
download | pyload-1b2591b0650a6a0be1ad41022f6019d17192f195.tar.xz |
Rename some Addon methods
Diffstat (limited to 'pyload/plugins/hook/XFileSharingPro.py')
-rw-r--r-- | pyload/plugins/hook/XFileSharingPro.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hook/XFileSharingPro.py b/pyload/plugins/hook/XFileSharingPro.py index 698da482f..28cc5f62d 100644 --- a/pyload/plugins/hook/XFileSharingPro.py +++ b/pyload/plugins/hook/XFileSharingPro.py @@ -44,7 +44,7 @@ class XFileSharingPro(Addon): # self.loadPattern() - def coreReady(self): + def activate(self): self.loadPattern() @@ -91,6 +91,6 @@ class XFileSharingPro(Addon): dict['re'] = re.compile(dict['pattern']) - def unload(self): + def deactivate(self): for type in ("hoster", "crypter"): self._unload(type, "XFileSharingPro") |