Added a warnings filter for a deprecated library (defusedxml.lxml) imported from another library (tastypie).

- Legacy-Id: 16167
This commit is contained in:
Henrik Levkowetz 2019-04-26 11:00:33 +00:00
parent beb631c8d6
commit ec91cb4448

View file

@ -20,6 +20,7 @@ warnings.filterwarnings("ignore", message="escape isn't the last filter in")
warnings.filterwarnings("ignore", message="Deprecated allow_tags attribute used on field")
warnings.filterwarnings("ignore", message="You passed a bytestring as `filenames`. This will not work on Python 3.")
warnings.filterwarnings("ignore", message="django.forms.extras is deprecated.", module="bootstrap3")
warnings.filterwarnings("ignore", message="defusedxml.lxml is no longer supported and will be removed in a future release.", module="tastypie")
try: