From f95dd12050777a176d92ae9c260e2a17957fe6d7 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Fri, 24 Mar 2006 19:10:10 +0000 Subject: [PATCH] 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 --- django/db/models/options.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/db/models/options.py b/django/db/models/options.py index dc0623ff4c..d5b7089fa4 100644 --- a/django/db/models/options.py +++ b/django/db/models/options.py @@ -66,8 +66,6 @@ class Options: auto.creation_counter = -1 model.add_to_class('id', auto) - self.limit_choices_to = {} - # If the db_table wasn't provided, use the app_label + module_name. if not self.db_table: self.db_table = "%s_%s" % (self.app_label, self.module_name)