summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-08 13:24:03 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-08 13:24:03 +0200
commitdd020e457359343b8beb9e605a32c1e7792cd8bb (patch)
treeed548e28ce468ceb2c19834a810f5277b4616432
parentFix https://github.com/pyload/pyload/issues/1975 (diff)
downloadpyload-dd020e457359343b8beb9e605a32c1e7792cd8bb.tar.xz
Fix https://github.com/pyload/pyload/issues/1978
-rw-r--r--module/plugins/internal/Base.py4
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):