From 796030590a851b1e75fee9172661abf0d6390cc3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 7 Aug 2014 08:30:50 -0400 Subject: [PATCH] [1.7.x] Added a missing unicode_literals that caused a test failure after refs #23226. Backport of 57b60f9f93 from master --- tests/model_regress/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/model_regress/models.py b/tests/model_regress/models.py index 7dacfc9c903..c42b0f0d356 100644 --- a/tests/model_regress/models.py +++ b/tests/model_regress/models.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +from __future__ import unicode_literals + from django.db import models from django.utils.encoding import python_2_unicode_compatible