django-admino icon indicating copy to clipboard operation
django-admino copied to clipboard

__str__ in field_names

Open openmartin opened this issue 8 years ago • 1 comments

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?

openmartin avatar Sep 25 '16 17:09 openmartin

Yes, that's should be a python 3 compatibility issue. We need to implement a fallback for this logic.

erdem avatar Sep 25 '16 21:09 erdem