Commit bdb0f795 authored by Vincent Pelletier's avatar Vincent Pelletier

caucase.wsgi: Disable pylint complaint about depreated module

This is a BBB codepath.
parent d476daaa
Pipeline #38786 failed with stage
in 0 seconds
...@@ -51,7 +51,7 @@ if sys.version_info[0] >= 3: # pragma: no cover ...@@ -51,7 +51,7 @@ if sys.version_info[0] >= 3: # pragma: no cover
from html import escape from html import escape
else: # pragma: no cover else: # pragma: no cover
# BBB: py2.7 # BBB: py2.7
from cgi import escape from cgi import escape # pylint: disable=deprecated-module
# pylint: enable=import-error,no-name-in-module # pylint: enable=import-error,no-name-in-module
__all__ = ('Application', 'CORSTokenManager') __all__ = ('Application', 'CORSTokenManager')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment