Ticket #736: mvd_admin_fix.patch
File mvd_admin_fix.patch, 688 bytes (added by , 19 years ago) |
---|
-
django/core/meta/__init__.py
1567 1567 # [('0', {'id': ['940'], 'choice': ['This is the first choice']}), 1568 1568 # ('1', {'id': ['941'], 'choice': ['This is the second choice']}), 1569 1569 # ('2', {'id': [''], 'choice': ['']})] 1570 obj_list = DotExpandedDict( new_data.data)[rel_opts.object_name.lower()].items()1570 obj_list = DotExpandedDict(dict(new_data))[rel_opts.object_name.lower()].items() 1571 1571 obj_list.sort(lambda x, y: cmp(int(x[0]), int(y[0]))) 1572 1572 params = {}