diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-15 05:41:47 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-15 05:41:47 +0200 |
commit | 743fb50e0f6e33077b8d1ea661f80c2f34e2711a (patch) | |
tree | 4b796571f31f498ca5be82cf464417e6dda1b53f /module/plugins/internal | |
parent | Update Base (diff) | |
download | pyload-743fb50e0f6e33077b8d1ea661f80c2f34e2711a.tar.xz |
[Plugin] Typo
Diffstat (limited to 'module/plugins/internal')
-rw-r--r-- | module/plugins/internal/Plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Plugin.py b/module/plugins/internal/Plugin.py index 70bd8574d..b89772052 100644 --- a/module/plugins/internal/Plugin.py +++ b/module/plugins/internal/Plugin.py @@ -166,7 +166,7 @@ class Base(object): class Plugin(Base): __name__ = "Plugin" __type__ = "hoster" - __version__ = "0.08" + __version__ = "0.09" __pattern__ = r'^unmatchable$' __config__ = [] #: [("name", "type", "desc", "default")] @@ -324,7 +324,7 @@ class Plugin(Base): """ fail and indicates file ist temporary offline, the core may take consequences """ raise Fail("temp. offline") - def skip(self, reason) + def skip(self, reason): raise Skip(reason) def retry(self, max_tries=3, wait_time=1, reason=""): |