1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 17:24:14 +00:00

fixed doc typo

This commit is contained in:
Pablo Hoffman 2010-01-18 18:16:58 -02:00
parent 496db55518
commit 67858af83c

View File

@ -155,7 +155,7 @@ To export all scraped items into a CSV file (with specific fields in headers lin
EXPORT_FORMAT = 'csv_headers'
EXPORT_FILE = 'scraped_items_with_headers.csv'
EXPORT_FILEDS = ['name', 'price', 'description']
EXPORT_FIELDS = ['name', 'price', 'description']
File Export Pipeline settings
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~