From 57b60f9f93f4aa660c191c54ebb30ce44e54f236 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 7 Aug 2014 08:30:50 -0400 Subject: [PATCH] Added a missing unicode_literals that caused a test failure after refs #23226. --- 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 7dacfc9c90..c42b0f0d35 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