diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-23 01:17:36 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-23 01:17:36 +0100 |
commit | 7091aa7914b93a594862f0da8c2f2ec6ed3b9001 (patch) | |
tree | c8f9579bcea6663f4ada444b5f62a4694eaf3a13 /module | |
parent | [ClickAndLoad] Improve create_connection (diff) | |
download | pyload-7091aa7914b93a594862f0da8c2f2ec6ed3b9001.tar.xz |
[MultihostersCom][PutdriveCom] Fix bad import
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/MultihostersCom.py | 4 | ||||
-rw-r--r-- | module/plugins/hoster/PutdriveCom.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hoster/MultihostersCom.py b/module/plugins/hoster/MultihostersCom.py index c5a48310e..bcd7c6237 100644 --- a/module/plugins/hoster/MultihostersCom.py +++ b/module/plugins/hoster/MultihostersCom.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -from module.plugins.hosters.ZeveraCom import ZeveraCom +from module.plugins.hoster.ZeveraCom import ZeveraCom class MultihostersCom(ZeveraCom): __name__ = "MultihostersCom" __type__ = "hoster" - __version__ = "0.02" + __version__ = "0.03" __pattern__ = r'https?://(?:www\.)multihosters\.com/(getFiles\.ashx|Members/download\.ashx)\?.*ourl=.+' diff --git a/module/plugins/hoster/PutdriveCom.py b/module/plugins/hoster/PutdriveCom.py index 67732a4cd..7f4b7b6cc 100644 --- a/module/plugins/hoster/PutdriveCom.py +++ b/module/plugins/hoster/PutdriveCom.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -from module.plugins.hosters.ZeveraCom import ZeveraCom +from module.plugins.hoster.ZeveraCom import ZeveraCom class PutdriveCom(ZeveraCom): __name__ = "PutdriveCom" __type__ = "hoster" - __version__ = "0.01" + __version__ = "0.02" __pattern__ = r'https?://(?:www\.)putdrive\.com/(getFiles\.ashx|Members/download\.ashx)\?.*ourl=.+' |