diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-17 16:16:18 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-17 16:16:18 +0100 |
commit | 0ffa48c8d47d5868e5b9948d2a594f0a5280c064 (patch) | |
tree | b60557cc73f5f85e7d7cb52a1c8ffec23bfd3c55 /pyload/plugins/accounts/Http.py | |
parent | Merge remote-tracking branch 'origin/stable' (diff) | |
download | pyload-0ffa48c8d47d5868e5b9948d2a594f0a5280c064.tar.xz |
restored multihoster overwritten by merge
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 |