[py3k] Fixed the index creation code that I committed a few minutes ago for py3k.

This commit is contained in:
Alex Gaynor 2012-09-07 15:33:02 -04:00
parent 335a9f9cf1
commit ad50243cd1
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import time
from django.conf import settings
from django.db.utils import load_backend
from django.utils.encoding import force_bytes
from django.utils.six.moves import input
# The prefix to put on the default database name when creating
@ -30,7 +31,7 @@ class BaseDatabaseCreation(object):
"""
h = hashlib.md5()
for arg in args:
h.update(arg)
h.update(force_bytes(arg))
return h.hexdigest()[:8]
def sql_create_model(self, model, style, known_models=set()):