From d7254f602f1ba5140603e2651fb9e2950690a7a5 Mon Sep 17 00:00:00 2001 From: Stefano Date: Mon, 25 Nov 2013 03:27:49 -0800 Subject: Merge pull request #418 from vuolter/s/internal_PEP8cleanup Internal plugins code cleanup according to PEP8 guidelines (cherry picked from commit cfe3b21334f3eef319a667a477634c025e757fbf) Conflicts: module/plugins/internal/MultiHoster.py pyload/plugins/internal/CaptchaService.py --- pyload/plugins/internal/DeadHoster.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pyload/plugins/internal/DeadHoster.py') diff --git a/pyload/plugins/internal/DeadHoster.py b/pyload/plugins/internal/DeadHoster.py index e180e2384..ba6abc0c5 100644 --- a/pyload/plugins/internal/DeadHoster.py +++ b/pyload/plugins/internal/DeadHoster.py @@ -5,6 +5,7 @@ def create_getInfo(plugin): yield [('#N/A: ' + url, 0, 1, url) for url in urls] return getInfo + class DeadHoster(_Hoster): __name__ = "DeadHoster" __type__ = "hoster" @@ -13,6 +14,6 @@ class DeadHoster(_Hoster): __description__ = """Hoster is no longer available""" __author_name__ = ("zoidberg") __author_mail__ = ("zoidberg@mujmail.cz") - + def setup(self): - self.fail("Hoster is no longer available") \ No newline at end of file + self.fail("Hoster is no longer available") -- cgit v1.2.3