magic-removal: Negligible spacing fixes

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2021 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-16 23:44:16 +00:00
parent ae4f89436f
commit fd44a02a1a
2 changed files with 1 additions and 2 deletions

View File

@ -112,7 +112,7 @@ class Field(object):
self.creation_counter = Field.creation_counter
Field.creation_counter += 1
def __cmp__(self,other ):
def __cmp__(self, other):
# This is needed because bisect does not take a comparison function.
return cmp(self.creation_counter, other.creation_counter)

View File

@ -213,7 +213,6 @@ class Options:
self._field_types[field_type] = False
return self._field_types[field_type]
class AdminOptions:
def __init__(self, fields=None, js=None, list_display=None, list_filter=None, date_hierarchy=None,
save_as=False, ordering=None, search_fields=None, save_on_top=False, list_select_related=False):