This commit is contained in:
Ross
2021-02-05 12:40:28 +00:00
parent c49807bd72
commit f76a96dcbd
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ class Long(models.Model):
return authors
def __str__(self):
examinations = [series.get_examinations() for series in self.series.all()]
examinations = [series.examination for series in self.series.all()]
return "{} : {}".format(self.history, ", ".join(examinations))
def GetExams(self):