diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-09-10 15:42:36 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-09-10 15:42:36 +0300 |
commit | ab79a43afa3b86181c3eaf7c327d54a78c18a8f4 (patch) | |
tree | d4a28808ec1d59c4aacadbdba1877194b673db58 /parsers/survex.py | |
parent | ad272fab3b313605f1c9e747a11a1b0d0d5a5473 (diff) | |
download | troggle-ab79a43afa3b86181c3eaf7c327d54a78c18a8f4.tar.gz troggle-ab79a43afa3b86181c3eaf7c327d54a78c18a8f4.tar.bz2 troggle-ab79a43afa3b86181c3eaf7c327d54a78c18a8f4.zip |
Removed class Area, use Cave.areacode Cave.subarea
Diffstat (limited to 'parsers/survex.py')
-rw-r--r-- | parsers/survex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsers/survex.py b/parsers/survex.py index 88c1099..96b2e4a 100644 --- a/parsers/survex.py +++ b/parsers/survex.py @@ -2169,7 +2169,7 @@ def FindAndLoadSurvex(): # These exceptions WILL be parsed if the are *included by any file which is not excepted unseensroot = re.sub(r"\.svx$", "", UNSEENS) - excpts = ["surface/terrain", "kataster/kataster-boundaries", "gpx/gpx_publish/essentials", "template", "docs", "deprecated", "subsections", "1623-and-1626-no-schoenberg-hs", "1623-and-1624-and-1626-and-1627", "1623-and-1626",unseensroot] + excpts = ["surface/terrain", "kataster/kataster-boundaries", "gpx/gpx_publish/essentials", "template", "docs", "deprecated", "subsections", "1623-and-1626-no-schoenberg-hs", "1623-and-1624-and-1626-and-1627", "1623-and-1626", "dummy_file", unseensroot] removals = set() for x in unseens: for o in excpts: |