From 7963b84aac5e1f845eb2488c4f5ddee814b6bd64 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 7 May 2020 16:40:45 +0200 Subject: [PATCH] data_transfer: use unicode_literals pragma (#42584) --- src/authentic2/data_transfer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git src/authentic2/data_transfer.py src/authentic2/data_transfer.py index 0296477b..09cf990b 100644 --- src/authentic2/data_transfer.py +++ src/authentic2/data_transfer.py @@ -14,6 +14,8 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +from __future__ import unicode_literals + from functools import wraps from django.core.exceptions import ValidationError, NON_FIELD_ERRORS -- 2.26.0