Closed giginet closed 10 years ago
In Python3, django uses __str__ instead of __unicode__ to display model detail.
__str__
__unicode__
Although, NotImplementedError is raised when __unicode__ is not implemented.
NotImplementedError
https://github.com/lambdalisue/django-inspectional-registration/blob/master/src/registration/supplements/base.py#L60
In Python3, django uses
__str__
instead of__unicode__
to display model detail.Although,
NotImplementedError
is raised when__unicode__
is not implemented.https://github.com/lambdalisue/django-inspectional-registration/blob/master/src/registration/supplements/base.py#L60