diff options
author | 2013-11-30 22:24:20 +0100 | |
---|---|---|
committer | 2013-11-30 22:24:20 +0100 | |
commit | 851011df889369cac5e4c91928be7e1a498f9ab8 (patch) | |
tree | 7138701c93ef2514c47419342e3428d270091d53 /module/plugins/internal/UnZip.py | |
parent | fixed import in ExternalScripts (diff) | |
parent | TurbobitNet: fixed #421 (diff) | |
download | pyload-851011df889369cac5e4c91928be7e1a498f9ab8.tar.xz |
Merge branch 'stable' of github.com:pyload/pyload into stable
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] |