We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd0c2aa + c909596 commit 0845a25Copy full SHA for 0845a25
docs/intro/overview.rst
@@ -144,7 +144,7 @@ Finally, here's the spider code::
144
torrent['url'] = response.url
145
torrent['name'] = response.xpath("//h1/text()").extract()
146
torrent['description'] = response.xpath("//div[@id='description']").extract()
147
- torrent['size'] = response.xpath("//div[@id='info-left']/p[2]/text()[2]").extract()
+ torrent['size'] = response.xpath("//div[@id='specifications']/p[2]/text()[2]").extract()
148
return torrent
149
150
The ``TorrentItem`` class is :ref:`defined above <intro-overview-item>`.
0 commit comments