diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-22 21:27:47 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-22 21:27:47 +0200 |
commit | 674b2a24f90b3cbf50630ddfdfb6c2b356a7bf7b (patch) | |
tree | 24a575f4c7319a3f9048718a08094bb510f72603 /pyload/plugin/addon/ExtractArchive.py | |
parent | Spare code cosmetics (10) (diff) | |
parent | little fix (diff) | |
download | pyload-674b2a24f90b3cbf50630ddfdfb6c2b356a7bf7b.tar.xz |
Merge pull request #11 from ardi69/0.4.10
some fixes
Diffstat (limited to 'pyload/plugin/addon/ExtractArchive.py')
-rw-r--r-- | pyload/plugin/addon/ExtractArchive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugin/addon/ExtractArchive.py b/pyload/plugin/addon/ExtractArchive.py index b0a24446a..616334af2 100644 --- a/pyload/plugin/addon/ExtractArchive.py +++ b/pyload/plugin/addon/ExtractArchive.py @@ -186,7 +186,7 @@ class ExtractArchive(Addon): traceback.print_exc() if self.extractors: - self.logDebug(*["Found %s %s" % (Extractor.NAME(), Extractor.VERSION) for Extractor in self.extractors]) + self.logDebug(*["Found %s %s" % (Extractor.NAME, Extractor.VERSION) for Extractor in self.extractors]) self.extractQueued() #: Resume unfinished extractions else: self.logInfo(_("No Extract plugins activated")) |