summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoulder Sprinters <boulder-sprinters@djangoproject.com>2006-11-05 01:23:14 +0000
committerBoulder Sprinters <boulder-sprinters@djangoproject.com>2006-11-05 01:23:14 +0000
commit48507721aa383de5763dd435d03d0b2dadcc7c2c (patch)
tree856f83a720d71958c7724fda4031c209fece2aa5
parent93bfe7f18e4ccb2c13d5ed14a0a71c5f0c94dd63 (diff)
[BoulderSprint] forgot to call function
git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4017 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/models/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/options.py b/django/db/models/options.py
index 0702655c2a..32a9a274ce 100644
--- a/django/db/models/options.py
+++ b/django/db/models/options.py
@@ -76,7 +76,7 @@ class Options(object):
if not self.db_table:
self.db_table = "%s_%s" % (self.app_label, self.module_name)
self.db_table = truncate_name(self.db_table,
- backend.get_max_name_length)
+ backend.get_max_name_length())
def add_field(self, field):
# Insert the given field in the order in which it was created, using