summaryrefslogtreecommitdiff
path: root/dashboard_website/db.py
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard_website/db.py')
-rw-r--r--dashboard_website/db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard_website/db.py b/dashboard_website/db.py
index 5f09f47..d4b0186 100644
--- a/dashboard_website/db.py
+++ b/dashboard_website/db.py
@@ -83,7 +83,7 @@ def getBikeCluePair(team_name):
if bike.name == team_name:
b = bike
for clue in clues:
- if clue.name == b.target:
+ if clue.name == b.target_name:
c = clue
break
break