summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/BasePlugin.py
diff options
context:
space:
mode:
authorGravatar jellysheep <max.mail@dameweb.de> 2015-10-18 22:10:45 +0200
committerGravatar jellysheep <max.mail@dameweb.de> 2015-10-18 22:10:45 +0200
commit2cbd2c2ca1e03f55587150812037205bb3669f32 (patch)
treee1598a7fff7e15340f33133595c6281cb78ed3a7 /module/plugins/hoster/BasePlugin.py
parentMerge pull request #2052 from jellysheep/patch-4 (diff)
downloadpyload-2cbd2c2ca1e03f55587150812037205bb3669f32.tar.xz
[BasePlugin] Http hoster is not an internal hoster
This fixes an import of the [Http hoster](https://github.com/pyload/pyload/blob/aff9388d433847fa7adad7421c4d76bd5bdd4e5a/module/plugins/hoster/Http.py), which is not an internal hoster. I don't know if it is intended to move `Http.py` to the `internal` directory?
Diffstat (limited to 'module/plugins/hoster/BasePlugin.py')
-rw-r--r--module/plugins/hoster/BasePlugin.py4
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$'