Skip to content

Commit

Permalink
fixed FeedExporter shutdown log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kmike committed May 18, 2015
1 parent 3a4d57b commit 60e79db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapy/extensions/feedexport.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def close_spider(self, spider):
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}
Expand Down

0 comments on commit 60e79db

Please sign in to comment.