From 6a74b51371e04b5bdf5a70a10970cd901fde9a65 Mon Sep 17 00:00:00 2001 From: Daniel Grana Date: Thu, 13 Aug 2009 23:23:08 -0300 Subject: [PATCH] remove dupes words in loaders doc, and unused import in example --HG-- extra : rebase_source : ea7886725af7a54bd1031cb28f92efbdfe921d9e --- docs/experimental/loaders.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/experimental/loaders.rst b/docs/experimental/loaders.rst index 48afa7728..b46310237 100644 --- a/docs/experimental/loaders.rst +++ b/docs/experimental/loaders.rst @@ -29,7 +29,7 @@ instantiate it with an Item object or without one, in which case an Item is automatically instantiated in the Item Loader constructor using the Item class specified in the :attr:`ItemLoader.default_item_class` attribute. -Then, you start collecting values into the Item Loader, typically using using +Then, you start collecting values into the Item Loader, typically using :ref:`XPath Selectors `. You can add more than one value to the same item field, the Item Loader will know how to "join" those values later using a proper processing function. @@ -39,7 +39,6 @@ the :ref:`Product item ` declared in the :ref:`Items chapter `:: from scrapy.contrib.loader import XPathItemLoader - from scrapy.xpath import HtmlXPathSelector from myproject.items import Product def parse(self, response):