From 78dcd4e1e71501da3e4e13780b6c6b89738d61c5 Mon Sep 17 00:00:00 2001 From: Julia Medina Date: Thu, 23 Apr 2015 11:52:58 -0300 Subject: [PATCH] scrapy/squeue.py shim --- scrapy/squeue.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 scrapy/squeue.py diff --git a/scrapy/squeue.py b/scrapy/squeue.py new file mode 100644 index 000000000..a4a3f4238 --- /dev/null +++ b/scrapy/squeue.py @@ -0,0 +1,7 @@ +import warnings +from scrapy.exceptions import ScrapyDeprecationWarning +warnings.warn("Module `scrapy.squeue` is deprecated, " + "use `scrapy.squeues` instead", + ScrapyDeprecationWarning, stacklevel=2) + +from scrapy.squeues import *