diff options
author | 2015-09-21 00:54:03 +0200 | |
---|---|---|
committer | 2015-09-21 00:54:03 +0200 | |
commit | 97d25752691aa561c29a91166fdd30302bef2db2 (patch) | |
tree | e397bf78d74dcce50cec0f6d46eb414b7a6696f7 /module/plugins/accounts/UptoboxCom.py | |
parent | Merge branch 'pr/n1788_GammaC0de' into stable (diff) | |
download | pyload-97d25752691aa561c29a91166fdd30302bef2db2.tar.xz |
[Account] parse_info -> grab_info
Diffstat (limited to 'module/plugins/accounts/UptoboxCom.py')
-rw-r--r-- | module/plugins/accounts/UptoboxCom.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/module/plugins/accounts/UptoboxCom.py b/module/plugins/accounts/UptoboxCom.py index 7cc217823..54d733375 100644 --- a/module/plugins/accounts/UptoboxCom.py +++ b/module/plugins/accounts/UptoboxCom.py @@ -4,16 +4,16 @@ from module.plugins.internal.XFSAccount import XFSAccount class UptoboxCom(XFSAccount): - __name__ = "UptoboxCom" - __type__ = "account" - __version__ = "0.12" - __status__ = "testing" + __name__ = "UptoboxCom" + __type__ = "account" + __version__ = "0.12" + __status__ = "testing" - __description__ = """Uptobox.com account plugin""" - __license__ = "GPLv3" - __authors__ = [("benbox69", "dev@tollet.me")] + __description__ = """Uptobox.com account plugin""" + __license__ = "GPLv3" + __authors__ = [("benbox69", "dev@tollet.me")] - HOSTER_DOMAIN = "uptobox.com" - HOSTER_URL = "https://uptobox.com/" - LOGIN_URL = "https://login.uptobox.com/logarithme/" + HOSTER_DOMAIN = "uptobox.com" + HOSTER_URL = "https://uptobox.com/" + LOGIN_URL = "https://login.uptobox.com/logarithme/" |