summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2013-08-23 17:59:35 +0100
committerAndrew Godwin <andrew@aeracode.org>2013-08-23 17:59:35 +0100
commit35230adf6351ac81f02088a240bf861914a050ee (patch)
tree11c98d77a59f0f12f3eff75906d52f49219935b9
parent2787de652af50917bdbadf6c4f2eb6f8603e65f2 (diff)
Python 3 compat fix for callable()
-rw-r--r--django/db/backends/schema.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/schema.py b/django/db/backends/schema.py
index 82286c5e87..eac7364b11 100644
--- a/django/db/backends/schema.py
+++ b/django/db/backends/schema.py
@@ -8,6 +8,7 @@ from django.db.models.fields.related import ManyToManyField
from django.db.transaction import atomic
from django.utils.log import getLogger
from django.utils.six.moves import reduce
+from django.utils.six import callable
logger = getLogger('django.db.backends.schema')