diff --git a/docs/topics/practices.rst b/docs/topics/practices.rst index 610a39ea9..a6d4f0d6d 100644 --- a/docs/topics/practices.rst +++ b/docs/topics/practices.rst @@ -35,8 +35,8 @@ Here's an example showing how to run a single spider with it. ... process = CrawlerProcess(settings={ - 'FEED_FORMAT':'json', - 'FEED_URI':'items.json' + 'FEED_FORMAT': 'json', + 'FEED_URI': 'items.json' }) process.crawl(MySpider)