diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-10-10 13:26:07 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-10-10 13:26:07 +0200 |
commit | 2d6de0b09f74bad9d5c1cce909febf78f7694dc6 (patch) | |
tree | ebe2dcc555dbaf1467afcdb1c3973a5daa737c0d /module | |
parent | Merge pull request #1995 from GammaC0de/patch-3 (diff) | |
download | pyload-2d6de0b09f74bad9d5c1cce909febf78f7694dc6.tar.xz |
Update Base.py
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/Base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/internal/Base.py b/module/plugins/internal/Base.py index 28b648994..423e53695 100644 --- a/module/plugins/internal/Base.py +++ b/module/plugins/internal/Base.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- +import re import inspect import mimetypes import os @@ -46,7 +47,7 @@ def check_abort(fn): class Base(Plugin): __name__ = "Base" __type__ = "base" - __version__ = "0.08" + __version__ = "0.09" __status__ = "testing" __pattern__ = r'^unmatchable$' |