mirror of https://github.com/scrapy/scrapy.git
scrapy/utils/decorator.py shim
This commit is contained in:
parent
7a7c539116
commit
593b4ef564
|
|
@ -0,0 +1,7 @@
|
|||
import warnings
|
||||
from scrapy.exceptions import ScrapyDeprecationWarning
|
||||
warnings.warn("Module `scrapy.utils.decorator` is deprecated, "
|
||||
"use `scrapy.utils.decorators` instead",
|
||||
ScrapyDeprecationWarning, stacklevel=2)
|
||||
|
||||
from scrapy.utils.decorators import *
|
||||
Loading…
Reference in New Issue