Skip to content

Commit

Permalink
Bug fix: dakrauth#20
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamK committed Apr 9, 2019
1 parent 2a024d8 commit fb4d625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swingtime/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class Meta:
base_manager_name = 'objects'

def __str__(self):
return u'{}: {}'.format(self.title, self.start_time.isoformat())
return '%s: %s'.format(self.title, self.start_time.isoformat())

def get_absolute_url(self):
return reverse('swingtime-occurrence', args=[str(self.event.id), str(self.id)])
Expand Down

0 comments on commit fb4d625

Please sign in to comment.