diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-18 22:27:38 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-18 22:27:38 +0200 |
commit | a71aa5746dd20995d01e3015f79e6d81da415ff8 (patch) | |
tree | e1598a7fff7e15340f33133595c6281cb78ed3a7 | |
parent | Merge pull request #2052 from jellysheep/patch-4 (diff) | |
parent | [BasePlugin] Http hoster is not an internal hoster (diff) | |
download | pyload-a71aa5746dd20995d01e3015f79e6d81da415ff8.tar.xz |
Merge pull request #2053 from jellysheep/patch-5
[BasePlugin] Http hoster is not an internal hoster
-rw-r--r-- | module/plugins/hoster/BasePlugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/BasePlugin.py b/module/plugins/hoster/BasePlugin.py index e1bb7c36a..100a74947 100644 --- a/module/plugins/hoster/BasePlugin.py +++ b/module/plugins/hoster/BasePlugin.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -from module.plugins.internal.hoster.Http import Http, create_getInfo +from module.plugins.hoster.Http import Http, create_getInfo class BasePlugin(Http): __name__ = "BasePlugin" __type__ = "hoster" - __version__ = "0.48" + __version__ = "0.49" __status__ = "testing" __pattern__ = r'^unmatchable$' |