From 0ce2ae4d1cec68d0028665b7716e6e8a0b52914d Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Thu, 18 Jul 2024 16:14:11 +0200 Subject: [PATCH] commnt added --- core/models/caves.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/models/caves.py b/core/models/caves.py index 0d16082..9d508fc 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -501,7 +501,7 @@ def GetCaveLookup(): global Gcave_count Gcave_count = defaultdict(int) # sets default value to int(0) - for cave in Cave.objects.all(): + for cave in Cave.objects.all(): # Note that this collects recently created Caves too key = cave.official_name.lower() if key != "" and key != "unamed" and key != "unnamed": if Gcave_count[key] > 0: