django-admino
django-admino copied to clipboard
__str__ in field_names
I found str in field_names site.py[141 line] cause unicode error and type error
So I add
field_names.remove("__str__")
I am using python 2.7, is this the problem?
Yes, that's should be a python 3 compatibility issue. We need to implement a fallback for this logic.