diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/views/cave_kataster.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/views/cave_kataster.py b/core/views/cave_kataster.py index 48aad7d..a682870 100644 --- a/core/views/cave_kataster.py +++ b/core/views/cave_kataster.py @@ -69,6 +69,8 @@ def kataster(request, slug): try:
# this is a python generator idiom.
# see https://realpython.com/introduction-to-python-generators/
+
+ # THIS IS VERY SILLY. We have this in the databse fom when this file was parsed. Don't read it again !
with open(settings.CAVEDESCRIPTIONS / cavefilename, 'r') as f:
for line in f:
if match := re.search(r'<entranceslug>(.*?)</entranceslug>', line):
|