diff options
author | 2013-11-17 19:29:37 +0100 | |
---|---|---|
committer | 2013-11-23 17:39:12 +0100 | |
commit | 92888358e14c0a9e50e5604095a1c148ccc8b80d (patch) | |
tree | 2c3f5b0c141ac90e34e2c8360886bc14f9715edd /module/plugins/internal/UnZip.py | |
parent | Merge pull request #386 from vuolter/s/setup_clean (diff) | |
download | pyload-92888358e14c0a9e50e5604095a1c148ccc8b80d.tar.xz |
Internal plugins PEP8 cleanup
Diffstat (limited to 'module/plugins/internal/UnZip.py')
-rw-r--r-- | module/plugins/internal/UnZip.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/internal/UnZip.py b/module/plugins/internal/UnZip.py index 9aa9ac75c..501962442 100644 --- a/module/plugins/internal/UnZip.py +++ b/module/plugins/internal/UnZip.py @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>. - + @author: RaNaN """ @@ -22,6 +22,7 @@ import sys from module.plugins.internal.AbstractExtractor import AbtractExtractor + class UnZip(AbtractExtractor): __name__ = "UnZip" __version__ = "0.1" @@ -46,4 +47,4 @@ class UnZip(AbtractExtractor): z.extractall(self.out) def getDeleteFiles(self): - return [self.file]
\ No newline at end of file + return [self.file] |