From e72bc5918b9b0718ecb8d67f90d65d922f5ad446 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Mon, 27 Apr 2009 14:09:33 +0000 Subject: [PATCH] added notice to pipelines.py project template about ITEM_PIPELINES settings --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%401093 --- scrapy/trunk/scrapy/templates/project/module/pipelines.py.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scrapy/trunk/scrapy/templates/project/module/pipelines.py.tmpl b/scrapy/trunk/scrapy/templates/project/module/pipelines.py.tmpl index 9cd5aabad..0bdacc044 100644 --- a/scrapy/trunk/scrapy/templates/project/module/pipelines.py.tmpl +++ b/scrapy/trunk/scrapy/templates/project/module/pipelines.py.tmpl @@ -1,4 +1,7 @@ # Define your item pipelines here +# +# Don't forget to add your pipeline to the ITEM_PIPELINES setting +# See: http://doc.scrapy.org/ref/settings.html#item-pipelines class ${ProjectName}Pipeline(object): def process_item(self, domain, item):