1
0
mirror of https://github.com/django/django.git synced 2025-07-05 10:19:20 +00:00

magic-removal: Removed an unused instance variable from Options class, meant to do this in r2547.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2557 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2006-03-24 19:10:10 +00:00
parent b9f4a027b4
commit f95dd12050

View File

@ -66,8 +66,6 @@ class Options:
auto.creation_counter = -1 auto.creation_counter = -1
model.add_to_class('id', auto) model.add_to_class('id', auto)
self.limit_choices_to = {}
# If the db_table wasn't provided, use the app_label + module_name. # If the db_table wasn't provided, use the app_label + module_name.
if not self.db_table: if not self.db_table:
self.db_table = "%s_%s" % (self.app_label, self.module_name) self.db_table = "%s_%s" % (self.app_label, self.module_name)