mirror of https://github.com/scrapy/scrapy.git
fixed class definition to match example call on line 148, as in master
This commit is contained in:
parent
8aa024e587
commit
b82f8dce95
|
|
@ -45,7 +45,7 @@ This would be our Item::
|
|||
|
||||
from scrapy.item import Item, Field
|
||||
|
||||
class Torrent(Item):
|
||||
class TorrentItem(Item):
|
||||
url = Field()
|
||||
name = Field()
|
||||
description = Field()
|
||||
|
|
|
|||
Loading…
Reference in New Issue