Added a warnings filter for a deprecated message triggered by a library module.

- Legacy-Id: 18132
This commit is contained in:
Henrik Levkowetz 2020-07-03 11:50:30 +00:00
parent 6868d9371e
commit 35a7dc9827

View file

@ -17,6 +17,7 @@ warnings.filterwarnings("ignore", message="Add the `renderer` argument to the re
warnings.filterwarnings("ignore", message="The logout\(\) view is superseded by")
warnings.filterwarnings("ignore", message="Report.file_reporters will no longer be available in Coverage.py 4.2", module="coverage.report")
warnings.filterwarnings("ignore", message="{% load staticfiles %} is deprecated")
warnings.filterwarnings("ignore", message="Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated", module="bleach")
try:
import syslog