code cleanup and fixing tests

This commit is contained in:
Mike Fährmann
2017-06-02 09:10:58 +02:00
parent dfe82526ee
commit c921b4f32a
8 changed files with 16 additions and 16 deletions

View File

@@ -22,8 +22,8 @@ class Job():
self.extractor = extractor.find(url)
if self.extractor is None:
raise exception.NoExtractorError(url)
self.extractor.log.debug("Using %s for %s",
self.extractor.__class__.__name__, url)
self.extractor.log.debug(
"Using %s for %s", self.extractor.__class__.__name__, url)
items = config.get(("images",))
if items: