summaryrefslogtreecommitdiffstats
path: root/parsers/survex.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-02-26 22:13:37 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-02-26 22:13:37 +0000
commit6de4fa66a2ea7986230c3bb0f64887488acaa33f (patch)
tree8907e1988764da4b090636b1efeee79021af7c9e /parsers/survex.py
parent394d94d5d6916b3aa61c7f89ce1b37798d3a87a1 (diff)
downloadtroggle-6de4fa66a2ea7986230c3bb0f64887488acaa33f.tar.gz
troggle-6de4fa66a2ea7986230c3bb0f64887488acaa33f.tar.bz2
troggle-6de4fa66a2ea7986230c3bb0f64887488acaa33f.zip
Initial add of On This Day links to svx file page
Diffstat (limited to 'parsers/survex.py')
-rw-r--r--parsers/survex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/parsers/survex.py b/parsers/survex.py
index b88267a..3cf3168 100644
--- a/parsers/survex.py
+++ b/parsers/survex.py
@@ -126,7 +126,7 @@ def get_team_on_trip(survexblock):
if survexblock in trip_people_cache:
return trip_people_cache[survexblock]
- qpeople = SurvexPersonRole.objects.filter(survexblock=survexblock)
+ qpeople = SurvexPersonRole.objects.filter(survexblock=survexblock) # not very good Django style
trip_people_cache[survexblock] = qpeople # this is a query list
return qpeople