From 2cbd2c2ca1e03f55587150812037205bb3669f32 Mon Sep 17 00:00:00 2001 From: jellysheep Date: Sun, 18 Oct 2015 22:10:45 +0200 Subject: [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? --- module/plugins/hoster/BasePlugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins') 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$' -- cgit v1.2.3