diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-01-25 17:03:17 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-01-25 17:03:17 +0100 |
commit | 9ceab3d8f9fac0c37cb7b5f7c29a690cdf1abf54 (patch) | |
tree | d4309db3e34500130e6d398ae1be117b97e02c43 /module/plugins/hoster/UploadboxCom.py | |
parent | more hoster disabled (diff) | |
download | pyload-9ceab3d8f9fac0c37cb7b5f7c29a690cdf1abf54.tar.xz |
fix some hosters, disable some more
Diffstat (limited to 'module/plugins/hoster/UploadboxCom.py')
-rw-r--r-- | module/plugins/hoster/UploadboxCom.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/module/plugins/hoster/UploadboxCom.py b/module/plugins/hoster/UploadboxCom.py index 0eb023cb2..ce80b37dc 100644 --- a/module/plugins/hoster/UploadboxCom.py +++ b/module/plugins/hoster/UploadboxCom.py @@ -17,7 +17,9 @@ """ import re -from module.plugins.internal.SimpleHoster import SimpleHoster, parseFileInfo +from module.plugins.internal.DeadHoster import DeadHoster as SimpleHoster + +""" from module.network.RequestFactory import getURL def getInfo(urls): @@ -26,12 +28,13 @@ def getInfo(urls): html = getURL('http://uploadbox.com/files/%s/?ac=lang&lang_new=en' % file_id, decode = False) file_info = parseFileInfo(UploadboxCom, url, html) yield file_info +""" class UploadboxCom(SimpleHoster): __name__ = "Uploadbox" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?uploadbox\.com/files/([^/]+).*" - __version__ = "0.04" + __version__ = "0.05" __description__ = """UploadBox.com plugin - free only""" __author_name__ = ("zoidberg") __author_mail__ = ("zoidberg@mujmail.cz") |