fix a line break

This commit is contained in:
Jonathan Mares 2018-02-03 14:36:25 -05:00
parent 0b103417f9
commit bc1d47efb5

View File

@ -38,7 +38,8 @@ class Reporter(models.Model):
'Reporter Type',
null=True,
blank=True,
choices=[(1, u'Regular'), (2, u'CNN Reporter')] )
choices=[(1, u'Regular'), (2, u'CNN Reporter')]
)
def __str__(self): # __unicode__ on Python 2
return "%s %s" % (self.first_name, self.last_name)