From 7ddf7fe373735cdf20f670c06a1a6fc282406252 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Thu, 14 Sep 2023 15:29:00 +0300 Subject: [PATCH] 1624 arge caves --- parsers/caves.py | 2 +- parsers/survex.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/parsers/caves.py b/parsers/caves.py index 272deaf37..f4bcf841d 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 f7b44f90f..651d879c6 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))