diff options
author | 2013-07-23 20:22:42 +0200 | |
---|---|---|
committer | 2013-07-23 20:40:59 +0200 | |
commit | 4a81799278ae003bfbd7897f7bcd1ef46642d953 (patch) | |
tree | 59e580fc761103cfacd9190bc9c55a5a01367f47 /pyload/plugins/accounts/Http.py | |
parent | little cleanup, added some tests (diff) | |
download | pyload-4a81799278ae003bfbd7897f7bcd1ef46642d953.tar.xz |
Fixed PEP 8 violations in Accounts
(cherry picked from commit f5535809bebc6cc343475704832c8fd8674d2d06)
Conflicts:
pyload/plugins/accounts/AlldebridCom.py
pyload/plugins/accounts/Premium4Me.py
pyload/plugins/accounts/PremiumizeMe.py
pyload/plugins/accounts/RealdebridCom.py
Diffstat (limited to 'pyload/plugins/accounts/Http.py')
-rw-r--r-- | pyload/plugins/accounts/Http.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyload/plugins/accounts/Http.py b/pyload/plugins/accounts/Http.py index 805d19900..5701d1f03 100644 --- a/pyload/plugins/accounts/Http.py +++ b/pyload/plugins/accounts/Http.py @@ -2,6 +2,7 @@ from module.plugins.Account import Account + class Http(Account): __name__ = "Http" __version__ = "0.01" @@ -9,5 +10,5 @@ class Http(Account): __description__ = """Http dummy account plugin""" __author_name__ = ("zoidberg") __author_mail__ = ("zoidberg@mujmail.cz") - - login_timeout = info_threshold = 1000000
\ No newline at end of file + + login_timeout = info_threshold = 1000000 |