diff options
author | 2015-06-17 18:29:50 +0200 | |
---|---|---|
committer | 2015-06-24 22:42:29 +0200 | |
commit | 164512b6a74c94a731fcee7435dce1ccfa2f71e7 (patch) | |
tree | 3f61d3b83f641070145b478f54522c4fe2e63691 /module/plugins/internal/Extractor.py | |
parent | Spare fixes (diff) | |
download | pyload-164512b6a74c94a731fcee7435dce1ccfa2f71e7.tar.xz |
Spare code cosmetics
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 2aa26e64a..f73388d8c 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -82,7 +82,9 @@ class Extractor(Plugin): delete='No', keepbroken=False, fid=None): - """Initialize extractor for specific file""" + """ + Initialize extractor for specific file + """ self.manager = manager self.filename = filename self.out = out @@ -99,7 +101,9 @@ class Extractor(Plugin): def init(self): - """Initialize additional data structures""" + """ + Initialize additional data structures + """ pass @@ -155,5 +159,7 @@ class Extractor(Plugin): def list(self, password=None): - """Populate self.files at some point while extracting""" + """ + Populate self.files at some point while extracting + """ return self.files |