summaryrefslogtreecommitdiff
path: root/tests/model_regress
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-08-07 08:30:50 -0400
committerTim Graham <timograham@gmail.com>2014-08-07 08:30:50 -0400
commit57b60f9f93f4aa660c191c54ebb30ce44e54f236 (patch)
tree672c9a78e7bd2e4a0ef466a7f7d6dfb10e61804e /tests/model_regress
parent173d989c91361243d0638f1e39db7148bc0ea4f8 (diff)
downloaddjango-57b60f9f93f4aa660c191c54ebb30ce44e54f236.tar.gz
Added a missing unicode_literals that caused a test failure after refs #23226.
Diffstat (limited to 'tests/model_regress')
-rw-r--r--tests/model_regress/models.py2
1 files changed, 2 insertions, 0 deletions
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