[Answer]-'Model' object has no attribute 'replace'

1👍

✅

Apparently the problem only appeared when a TrackUser was linked to another model.

In one of these models I changed the __unicode__ from

def __unicode__(self):
    return self.user

to

def __unicode__(self):
    return self.user.get_full_name()

which solved the problem

Leave a comment