magic-removal: fixed a Python2.4-ism in db.models.manipulators (use of keywords to list.sort)

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1841 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2006-01-06 22:10:35 +00:00
parent 037a6ede40
commit 548ee3795b
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ class ManipulatorCollection(list, Naming):
if expanded_data:
# There are new objects in the data
items = [(int(k), v) for k, v in expanded_data.items()]
items.sort(cmp = lambda x, y: cmp(x[0], y[0]))
items.sort(lambda x, y: cmp(x[0], y[0]))
for index, obj_data in items:
child_manip = self.add_child(index)
#HACK: this data will not have been converted to python form yet.