diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-09 00:22:51 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-09 00:22:51 +0200 |
commit | 73f99ea811d01a2e113a882fe5ab86b0aa9c4f4c (patch) | |
tree | 88c50e2d5ccf079768111f040c0531f5eee26a97 /module/plugins/hooks/ExtractArchive.py | |
parent | Merge branch 'pr/n1314_sebdelsol' into stable (diff) | |
download | pyload-73f99ea811d01a2e113a882fe5ab86b0aa9c4f4c.tar.xz |
[SimpleHoster] Improve file name handling
Diffstat (limited to 'module/plugins/hooks/ExtractArchive.py')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index 9e6f2d379..d40b52aa7 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -173,7 +173,7 @@ class ExtractArchive(Hook): except OSError, e: if e.errno == 2: - self.logInfo(_("No %s installed") % p) + self.logWarning(_("No %s installed") % p) else: self.logWarning(_("Could not activate: %s") % p, e) if self.core.debug: @@ -185,7 +185,7 @@ class ExtractArchive(Hook): traceback.print_exc() if self.extractors: - self.logInfo(_("Activated") + " " + "|".join("%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")) |