From e8f1395f4e65f9d2ffc7a0448980ebaca0b2991a Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Mon, 5 May 2014 19:50:51 +0200 Subject: [1.7.x] Added a bunch of missing unicode_literals Refs #22564. Backport of 12474dace from master. --- django/db/migrations/executor.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'django/db/migrations/executor.py') diff --git a/django/db/migrations/executor.py b/django/db/migrations/executor.py index 147aa550ae..04d2b778f5 100644 --- a/django/db/migrations/executor.py +++ b/django/db/migrations/executor.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + from django.db import migrations from .loader import MigrationLoader from .recorder import MigrationRecorder -- cgit v1.3