diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-08 13:24:03 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-08 13:24:03 +0200 |
commit | dd020e457359343b8beb9e605a32c1e7792cd8bb (patch) | |
tree | ed548e28ce468ceb2c19834a810f5277b4616432 /module/plugins/internal | |
parent | Fix https://github.com/pyload/pyload/issues/1975 (diff) | |
download | pyload-dd020e457359343b8beb9e605a32c1e7792cd8bb.tar.xz |
Fix https://github.com/pyload/pyload/issues/1978
Diffstat (limited to 'module/plugins/internal')
-rw-r--r-- | module/plugins/internal/Base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Base.py b/module/plugins/internal/Base.py index 64d00b48a..d4d4094b9 100644 --- a/module/plugins/internal/Base.py +++ b/module/plugins/internal/Base.py @@ -46,7 +46,7 @@ def check_abort(fn): class Base(Plugin): __name__ = "Base" __type__ = "base" - __version__ = "0.06" + __version__ = "0.07" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -57,7 +57,7 @@ class Base(Plugin): __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - URL_REPLACEMENTS = None + URL_REPLACEMENTS = [] def __init__(self, pyfile): |