Fixed outdated import in django/utils/safestring.py.

The backported version of functools.wraps was removed in
13864703bc.
This commit is contained in:
Baptiste Mispelon 2019-12-06 09:31:33 +01:00 committed by Mariusz Felisiak
parent 5d674eac87
commit f138e75910
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ that the producer of the string has already turned characters that should not
be interpreted by the HTML engine (e.g. '<') into the appropriate entities.
"""
from django.utils.functional import wraps
from functools import wraps
class SafeData: