summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/HugefilesNet.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-23 04:32:27 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-23 04:32:27 +0200
commit3758f5e1dfccc70e4bb733e4e6a5932967bbf787 (patch)
treeec63a2793dcb45f0ab99332c0155572e3c62e129 /module/plugins/hoster/HugefilesNet.py
parent[SimpleCrypter] check_errors (diff)
downloadpyload-3758f5e1dfccc70e4bb733e4e6a5932967bbf787.tar.xz
Fix XFS plugins
Diffstat (limited to 'module/plugins/hoster/HugefilesNet.py')
-rw-r--r--module/plugins/hoster/HugefilesNet.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/HugefilesNet.py b/module/plugins/hoster/HugefilesNet.py
index 90391a4e2..c9b39603d 100644
--- a/module/plugins/hoster/HugefilesNet.py
+++ b/module/plugins/hoster/HugefilesNet.py
@@ -8,7 +8,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo
class HugefilesNet(XFSHoster):
__name__ = "HugefilesNet"
__type__ = "hoster"
- __version__ = "0.07"
+ __version__ = "0.08"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?hugefiles\.net/\w{12}'
@@ -19,6 +19,8 @@ class HugefilesNet(XFSHoster):
__authors__ = [("stickell", "l.stickell@yahoo.it")]
+ PLUGIN_DOMAIN = "hugefiles.net"
+
SIZE_PATTERN = r'File Size:</span>\s*<span.*?>(?P<S>[^<]+)</span></div>'
FORM_INPUTS_MAP = {'ctype': re.compile(r'\d+')}