summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoulder Sprinters <boulder-sprinters@djangoproject.com>2006-11-04 21:00:58 +0000
committerBoulder Sprinters <boulder-sprinters@djangoproject.com>2006-11-04 21:00:58 +0000
commit36d057c9024d457eed3175b19ca159d15b57fe34 (patch)
tree9464c15f9b960a63f0a6dedf9312f0b28ef24f0d
parente5007b39421b5222dba9cad42bfcdd38f3b70720 (diff)
Fix typo
git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@3980 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management.py b/django/core/management.py
index dc5e4e6044..b0d32ff19b 100644
--- a/django/core/management.py
+++ b/django/core/management.py
@@ -214,7 +214,7 @@ def _get_sql_for_pending_references(model, pending_references):
Get any ALTER TABLE statements to add constraints after the fact.
"""
from django.db import backend, get_creation_module
- from django.db.backend.util import truncate_name
+ from django.db.backends.util import truncate_name
data_types = get_creation_module().DATA_TYPES
final_output = []