1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Added a bunch of missing unicode_literals

Refs #22564.
This commit is contained in:
Claude Paroz
2014-05-05 19:50:51 +02:00
parent df60db0e78
commit 12474dacef
14 changed files with 33 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
from __future__ import unicode_literals
class Operation(object):
"""
Base class for migration operations.

View File

@@ -1,3 +1,5 @@
from __future__ import unicode_literals
from django.db import router
from django.db.models.fields import NOT_PROVIDED
from django.utils import six

View File

@@ -1,3 +1,5 @@
from __future__ import unicode_literals
from django.db import models, router
from django.db.models.options import normalize_together
from django.db.migrations.state import ModelState

View File

@@ -1,3 +1,5 @@
from __future__ import unicode_literals
from .base import Operation