I have the following in my settings.py
ITEM_PIPELINES = ['mybot.pipelines.custompipeline']
But when I start scrapy, I get the following warning.
/lib/python2.7/site-packages/scrapy/contrib/pipeline/init.py:21: ScrapyDeprecationWarning: ITEM_PIPELINES defined as a list or a set is deprecated, switch to a dict category=ScrapyDeprecationWarning, stacklevel=1)
It still seems to be working properly. But, what do I need to do in order to remove this warning?