Fix a dict key in the tutorial

This commit is contained in:
Wayne Lovely 2016-09-17 11:09:28 +00:00
parent 992b2517b0
commit cc8497abb1
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