diff options
Diffstat (limited to 'pyload/plugins/account/HugefilesNet.py')
-rw-r--r-- | pyload/plugins/account/HugefilesNet.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/pyload/plugins/account/HugefilesNet.py b/pyload/plugins/account/HugefilesNet.py index d9828e333..5da3bbc37 100644 --- a/pyload/plugins/account/HugefilesNet.py +++ b/pyload/plugins/account/HugefilesNet.py @@ -1,15 +1,16 @@ # -*- coding: utf-8 -*- -from pyload.plugins.internal.XFSPAccount import XFSPAccount +from module.plugins.internal.XFSAccount import XFSAccount -class HugefilesNet(XFSPAccount): - __name__ = "HugefilesNet" - __type__ = "account" - __version__ = "0.01" +class HugefilesNet(XFSAccount): + __name__ = "HugefilesNet" + __type__ = "account" + __version__ = "0.02" __description__ = """Hugefiles.net account plugin""" - __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - HOSTER_URL = "http://www.hugefiles.net/" + HOSTER_DOMAIN = "hugefiles.net" |