diff options
| author | Boulder Sprinters <boulder-sprinters@djangoproject.com> | 2006-11-05 01:23:14 +0000 |
|---|---|---|
| committer | Boulder Sprinters <boulder-sprinters@djangoproject.com> | 2006-11-05 01:23:14 +0000 |
| commit | 48507721aa383de5763dd435d03d0b2dadcc7c2c (patch) | |
| tree | 856f83a720d71958c7724fda4031c209fece2aa5 | |
| parent | 93bfe7f18e4ccb2c13d5ed14a0a71c5f0c94dd63 (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.py | 2 |
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 |
