diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-09-14 15:29:00 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-09-14 15:29:00 +0300 |
commit | 7ddf7fe373735cdf20f670c06a1a6fc282406252 (patch) | |
tree | 399e2e5e15bb2b3634e161d684bba3a18a8196f4 | |
parent | 1effc10e3f2364bab59a179bb4270d962e402808 (diff) | |
download | troggle-7ddf7fe373735cdf20f670c06a1a6fc282406252.tar.gz troggle-7ddf7fe373735cdf20f670c06a1a6fc282406252.tar.bz2 troggle-7ddf7fe373735cdf20f670c06a1a6fc282406252.zip |
1624 arge caves
-rw-r--r-- | parsers/caves.py | 2 | ||||
-rw-r--r-- | parsers/survex.py | 2 |
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)) |