Merge pull request #1240 from scrapy/fix-feedexport-logging

MRG+1 fixed FeedExporter shutdown log messages
This commit is contained in:
Julia Medina 2015-05-18 14:54:11 -03:00
commit 044f31cb8d
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class FeedExporter(object):
if not slot.itemcount and not self.store_empty:
return
slot.exporter.finish_exporting()
logfmt = "%%s %(format)s feed (%(itemcount)d items) in: %(uri)s"
logfmt = "%s %%(format)s feed (%%(itemcount)d items) in: %%(uri)s"
log_args = {'format': self.format,
'itemcount': slot.itemcount,
'uri': slot.uri}