From 1e9ab4a0da542a8105e6e2088d0f8f3ebc31842d Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 21 Jan 2021 18:42:04 +0000 Subject: [PATCH] . --- rapids/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rapids/models.py b/rapids/models.py index 1a4e7600..266ffc01 100644 --- a/rapids/models.py +++ b/rapids/models.py @@ -200,7 +200,7 @@ class Rapid(models.Model): def get_examinations(self): """Returns a comma seperated text list of regions""" - examinations = ", ".join([i.name for i in self.examination.all()]) + examinations = ", ".join([i.examination for i in self.examination.all()]) return examinations def __str__(self):