Fix a dict key in the tutorial

This commit is contained in:
Wayne Lovely 2016-09-17 11:09:28 +00:00 committed by Paul Tremberth
parent 2d8d7dd68d
commit d638f893e8
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ standard dict syntax like::
>>> from tutorial.items import QuoteItem
>>> item = QuoteItem()
>>> item['text'] = 'Some random quote'
>>> item['title']
>>> item['text']
'Some random quote'
So, in order to return the data we've scraped so far, the final code for our