summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/UploadhereCom.py
diff options
context:
space:
mode:
authorGravatar zoidberg10 <zoidberg@mujmail.cz> 2011-11-22 00:26:08 +0100
committerGravatar zoidberg10 <zoidberg@mujmail.cz> 2011-11-22 00:26:08 +0100
commit9378237ddc39f8ee96e7a3ddb9cc37ce487c5f4d (patch)
tree325aba4194c29ee7869f662e1b8f8b5015afd283 /module/plugins/hoster/UploadhereCom.py
parentSimpleHoster fix (diff)
downloadpyload-9378237ddc39f8ee96e7a3ddb9cc37ce487c5f4d.tar.xz
fix filepost (#431), hellspy, ifolder, letitbit, change SimpleHoster patterns
Diffstat (limited to 'module/plugins/hoster/UploadhereCom.py')
-rw-r--r--module/plugins/hoster/UploadhereCom.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/module/plugins/hoster/UploadhereCom.py b/module/plugins/hoster/UploadhereCom.py
index 35ddf25c8..385e77dc7 100644
--- a/module/plugins/hoster/UploadhereCom.py
+++ b/module/plugins/hoster/UploadhereCom.py
@@ -16,15 +16,18 @@
@author: zoidberg
"""
-from UploadkingCom import UploadkingCom, getInfo
+from module.plugins.internal.SimpleHoster import create_getInfo
+from UploadkingCom import UploadkingCom
class UploadhereCom(UploadkingCom):
__name__ = "UploadhereCom"
__type__ = "hoster"
__pattern__ = r"http://(?:www\.)?uploadhere\.com/\w{10}"
- __version__ = "0.1"
+ __version__ = "0.11"
__description__ = """Uploadhere.com plugin - free only"""
__author_name__ = ("zoidberg")
__author_mail__ = ("zoidberg@mujmail.cz")
- # shares code with UploadkingCom \ No newline at end of file
+ # shares code with UploadkingCom
+
+create_getInfo(UploadhereCom) \ No newline at end of file