From: yomguy Date: Fri, 24 Feb 2012 14:54:12 +0000 (+0100) Subject: bugfix X-Git-Tag: 1.0~37 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=f66521c3ea1d1e0d1b02983a2661dc28fce2cad5;p=telecaster-server.git bugfix --- diff --git a/telecaster/models.py b/telecaster/models.py index f76bc6b..ede768d 100644 --- a/telecaster/models.py +++ b/telecaster/models.py @@ -130,7 +130,7 @@ class Station(Model): null=True, on_delete=models.SET_NULL) professor = ForeignKey(Professor, related_name='stations', verbose_name='professor', null=True, on_delete=models.SET_NULL) - professor_free = CharField(_(professor), max_length=255, blank=True) + professor_free = CharField(_('professor'), max_length=255, blank=True) comment = TextField(_('comment'), blank=True) started = BooleanField(_('started')) datetime_start = DateTimeField(_('time_start'), blank=True, null=True)