Commit 135d10d4 by cahrens

Fix unicode return value.

parent f911c96d
......@@ -39,7 +39,7 @@ class CourseCreator(models.Model):
"why course creation access was denied)"))
def __unicode__(self):
return u'%str | %str [%str] | %str' % (self.user, self.state, self.state_changed, self.note)
return u'%s | %s [%s]' % (self.user, self.state, self.state_changed)
@receiver(post_init, sender=CourseCreator)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment