diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-16 01:14:47 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-16 01:14:47 +0100 |
commit | 0b73c1b042a2b1e17f30c951626586f8774c68ed (patch) | |
tree | d7b45f135969ac7d25e7ecc73857be580c9097a4 /module | |
parent | [SimpleCrypter] Fix new getLinks routine (diff) | |
download | pyload-0b73c1b042a2b1e17f30c951626586f8774c68ed.tar.xz |
[SkipRev] Fix https://github.com/pyload/pyload/issues/1048
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/SkipRev.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/SkipRev.py b/module/plugins/hooks/SkipRev.py index 6b4e715da..51d385bb4 100644 --- a/module/plugins/hooks/SkipRev.py +++ b/module/plugins/hooks/SkipRev.py @@ -18,7 +18,7 @@ def _setup(self): class SkipRev(Hook): __name__ = "SkipRev" __type__ = "hook" - __version__ = "0.23" + __version__ = "0.24" __config__ = [("tokeep", "int", "Number of rev files to keep for package (-1 to auto)", -1)] @@ -34,7 +34,7 @@ class SkipRev(Hook): def _pyname(self, pyfile): if hasattr(pyfile.pluginmodule, "getInfo"): - return next(getattr(pyfile.pluginmodule, "getInfo")([pyfile.url]))[0] + return getattr(pyfile.pluginmodule, "getInfo")([pyfile.url]).next()[0] else: self.logWarning("Unable to grab file name") return urlparse(unquote(pyfile.url)).path.split('/')[-1] |