From 062730cbd8d578ad8dccb784c38ff1a8006e7a6f Mon Sep 17 00:00:00 2001 From: Daniel Grana Date: Wed, 16 Sep 2009 00:17:50 -0300 Subject: [PATCH] fix csv exporter documentation --- docs/topics/item-pipeline.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/item-pipeline.rst b/docs/topics/item-pipeline.rst index b8217a8cf..68c6dd4c1 100644 --- a/docs/topics/item-pipeline.rst +++ b/docs/topics/item-pipeline.rst @@ -134,12 +134,12 @@ To export all scraped items into a XML file:: EXPORT_FORMAT = 'xml' EXPORT_FILE = 'scraped_items.xml' -To export all scraped items into a CSV file (without a headers line):: +To export all scraped items into a CSV file (with all fields in headers line):: EXPORT_FORMAT = 'csv' EXPORT_FILE = 'scraped_items.csv' -To export all scraped items into a CSV file (with a headers line):: +To export all scraped items into a CSV file (with specific fields in headers line):: EXPORT_FORMAT = 'csv_headers' EXPORT_FILE = 'scraped_items_with_headers.csv'