diff options
author | 2013-08-08 17:38:35 +0200 | |
---|---|---|
committer | 2013-08-08 17:38:35 +0200 | |
commit | 52f6599748ef61219112111dc5db71f3342b076d (patch) | |
tree | e3627ded64b7e98493ca1ec7bd182aaa1774252e /pyload/plugins/accounts/Http.py | |
parent | MultiHosters: moved settings to addon plugins. (diff) | |
download | pyload-52f6599748ef61219112111dc5db71f3342b076d.tar.xz |
adapted account api to multi user, fixed http referer bug
Diffstat (limited to 'pyload/plugins/accounts/Http.py')
-rw-r--r-- | pyload/plugins/accounts/Http.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pyload/plugins/accounts/Http.py b/pyload/plugins/accounts/Http.py index 5701d1f03..de9490b2c 100644 --- a/pyload/plugins/accounts/Http.py +++ b/pyload/plugins/accounts/Http.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from module.plugins.Account import Account +from pyload.plugins.Account import Account class Http(Account): @@ -11,4 +11,9 @@ class Http(Account): __author_name__ = ("zoidberg") __author_mail__ = ("zoidberg@mujmail.cz") + __config__ = [("domain", "str", "Domain", "")] + login_timeout = info_threshold = 1000000 + + def login(self, req): + pass
\ No newline at end of file |