summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--parsers/caves.py2
-rw-r--r--parsers/survex.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/parsers/caves.py b/parsers/caves.py
index 272deaf..f4bcf84 100644
--- a/parsers/caves.py
+++ b/parsers/caves.py
@@ -45,7 +45,7 @@ todo = """
again. (status as of July 2022). May not happen now that class Area is removed (Sept.2023).
"""
AREACODES = {"1623", "1624", "1626", "1627"} # NB set not dict
-ARGEAREAS = {"1626", "1627"}
+ARGEAREAS = {"1626", "1627", "1624"} # NB set not dict
entrances_xslug = {}
caves_xslug = {}
diff --git a/parsers/survex.py b/parsers/survex.py
index f7b44f9..651d879 100644
--- a/parsers/survex.py
+++ b/parsers/survex.py
@@ -1204,7 +1204,7 @@ class LoadingSurvex:
if cavepath[6:10] in ARGEAREAS:
return do_ARGE_cave(sluggy, caveid, area, svxid)
- cave = create_new_cave(cavepath, f"Make cave found in survex file {svxid}") # uses the pending code to create pending cave descriptions
+ cave = create_new_cave(cavepath, f"Cave mentioned only in a survex file {svxid}") # uses the pending code to create pending cave descriptions
self.caveslist[cavepath] = cave
message = f"\n ! MAKING cave {sluggy} for {cavepath=} {svxid=}"
# stash_data_issue(parser="survex", message=message, url="/survexfile/{svxid}.svx", sb=(svxid))