diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-20 00:33:05 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-20 00:33:05 +0200 |
commit | 3253bc2596edc5d45a64a643d85f154b8f0fd8ce (patch) | |
tree | f2129e5eee61ebdd2783268033d46c291548bfbb | |
parent | Improve log functions (diff) | |
download | pyload-3253bc2596edc5d45a64a643d85f154b8f0fd8ce.tar.xz |
Tiny code cosmetics in Ftp and Http accounts
-rw-r--r-- | module/plugins/accounts/Ftp.py | 3 | ||||
-rw-r--r-- | module/plugins/accounts/Http.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/module/plugins/accounts/Ftp.py b/module/plugins/accounts/Ftp.py index 698051ede..422573a4a 100644 --- a/module/plugins/accounts/Ftp.py +++ b/module/plugins/accounts/Ftp.py @@ -13,4 +13,5 @@ class Ftp(Account): __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] - login_timeout = info_threshold = 1000000 + info_threshold = 1000000 + login_timeout = 1000000 diff --git a/module/plugins/accounts/Http.py b/module/plugins/accounts/Http.py index c7b03a668..c3170ae85 100644 --- a/module/plugins/accounts/Http.py +++ b/module/plugins/accounts/Http.py @@ -13,4 +13,5 @@ class Http(Account): __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] - login_timeout = info_threshold = 1000000 + info_threshold = 1000000 + login_timeout = 1000000 |