Python 3 compat fix for callable()

This commit is contained in:
Andrew Godwin 2013-08-23 17:59:35 +01:00
parent 2787de652a
commit 35230adf63
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ from django.db.models.fields.related import ManyToManyField
from django.db.transaction import atomic from django.db.transaction import atomic
from django.utils.log import getLogger from django.utils.log import getLogger
from django.utils.six.moves import reduce from django.utils.six.moves import reduce
from django.utils.six import callable
logger = getLogger('django.db.backends.schema') logger = getLogger('django.db.backends.schema')