diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-09-21 16:31:48 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-09-21 16:31:48 +0200 |
commit | fb45ec44220201268f99b747831df717fa7a83f8 (patch) | |
tree | f44992b7c3a803848da1c44e9ce7ba3117908e1c /module/plugins/internal/Addon.py | |
parent | Spare code cosmetics (diff) | |
download | pyload-fb45ec44220201268f99b747831df717fa7a83f8.tar.xz |
[Account] Fix __version__
Diffstat (limited to 'module/plugins/internal/Addon.py')
-rw-r--r-- | module/plugins/internal/Addon.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Addon.py b/module/plugins/internal/Addon.py index 35375046c..2609c6033 100644 --- a/module/plugins/internal/Addon.py +++ b/module/plugins/internal/Addon.py @@ -25,7 +25,7 @@ def threaded(fn): class Addon(Plugin): __name__ = "Addon" __type__ = "hook" #@TODO: Change to `addon` in 0.4.10 - __version__ = "0.05" + __version__ = "0.06" __status__ = "testing" __config__ = [] #: [("name", "type", "desc", "default")] @@ -123,7 +123,7 @@ class Addon(Plugin): #: Deprecated method, use `activated` property instead (Remove in 0.4.10) def isActivated(self, *args, **kwargs): - return self.is_activated(*args, **kwargs) + return self.activated def deactivate(self): |