diff --git a/backend/section/models.py b/backend/section/models.py index 9ac161ed9..e2313465f 100644 --- a/backend/section/models.py +++ b/backend/section/models.py @@ -275,8 +275,8 @@ class Meta: def __str__(self): return "{} - {} ({}-{})".format( - self.song.artist, - self.song.name, + self.song.artist if self.song else '', + self.song.name if self.song else '', self.start_time_str(), self.end_time_str() )