diff --git a/app/models.py b/app/models.py index 02f6f879..810518d7 100644 --- a/app/models.py +++ b/app/models.py @@ -438,7 +438,7 @@ class NotificationEmailData(db.Model): ''' String representation of the NotificationEmailData. For human readability. ''' - return '' % self.id # TODO: Why not .format()? + return ''.format(id=self.id) def to_dict(self): return {'id': self.id,