Hi Folks, Can anyone help out with a broken part of the admin interface? I get this message if I try to edit a user:
AttributeError at /admin/auth/user/1/ 'bool' object has no attribute 'get' Request Method: GET Request URL: http://example.com/admin/auth/user/1/ Exception Type: AttributeError Exception Value: 'bool' object has no attribute 'get' Exception Location: /usr/lib/python2.4/site-packages/Django-0.91-py2.4.egg/django/db/models/related.py in get_manipulator_fields, line 111 /usr/lib/python2.4/site-packages/Django-0.91-py2.4.egg/django/db/models/related.py in get_manipulator_fields 105. count = self.field.rel.num_in_admin 106. else: 107. count = 1 108. 109. fields = [] 110. for i in range(count): 111. for f in self.opts.fields + self.opts.many_to_many: 112. if follow.get(f.name, False): ... 113. prefix = '%s.%d.' % (self.var_name, i) 114. fields.extend(f.get_manipulator_fields(self.opts, manipulator, change, 115. name_prefix=prefix, rel=True)) 116. return fields 117. 118. def __repr__(self): Thanks, Tom --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

