diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-15 19:00:15 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-15 19:00:15 +0200 |
commit | 7bc0b193735b5e98c33ae6f0f10e3d49d441fdf0 (patch) | |
tree | 962e91d25d55ade89ddcb9fe1c5b0e6bcf5ad98a | |
parent | Fix https://github.com/pyload/pyload/issues/1504 (diff) | |
download | pyload-7bc0b193735b5e98c33ae6f0f10e3d49d441fdf0.tar.xz |
Fix https://github.com/pyload/pyload/issues/1503
-rw-r--r-- | module/plugins/internal/Hook.py | 2 | ||||
-rw-r--r-- | module/plugins/internal/SimpleHoster.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Hook.py b/module/plugins/internal/Hook.py index 0eec4c008..0eeca5556 100644 --- a/module/plugins/internal/Hook.py +++ b/module/plugins/internal/Hook.py @@ -24,7 +24,7 @@ def threaded(fn): class Hook(Base): __name__ = "Hook" __type__ = "hook" - __version__ = "0.06" + __version__ = "0.07" __config__ = [] #: [("name", "type", "desc", "default")] __threaded__ = [] #@TODO: Remove in 0.4.10 diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index a00676aa1..58d8158ca 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -229,7 +229,7 @@ def secondsToMidnight(gmt=0): class SimpleHoster(Hoster): __name__ = "SimpleHoster" __type__ = "hoster" - __version__ = "1.67" + __version__ = "1.68" __pattern__ = r'^unmatchable$' __config__ = [("use_premium", "bool", "Use premium account if available" , True), |