Not a mistake but it might lead to a confusion given that the default files
created by the startproject command creates a pipelines.py file and the
example assumes the pipeline files is in pipeline.py.

I've made a pull request to change the name.

Rolando


On Sat, Feb 15, 2014 at 1:15 AM, Alex Wind <[email protected]> wrote:

> Please see
> http://doc.scrapy.org/en/latest/topics/item-pipeline.html#activating-an-item-pipeline-component
>
> this code
>
> ITEM_PIPELINES = {
>
>     'myproject.pipeline.PricePipeline': 300,
>
>     'myproject.pipeline.JsonWriterPipeline': 800,
> }
>
>
> cause that pipeline can't found, so I modify it like following:
>
> ITEM_PIPELINES = {
>     'myproject.pipelines.PricePipeline': 300,
>
>     'myproject.pipelines.JsonWriterPipeline': 800,
> }
>
>
> then I run scrapy successfully.
>
> --
> You received this message because you are subscribed to the Google Groups
> "scrapy-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/scrapy-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"scrapy-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/scrapy-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to