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:
parent
ae4f89436f
commit
fd44a02a1a
|
@ -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)
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue