diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-06-30 12:05:54 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-06-30 12:05:54 +0300 |
commit | 8d901efdfcb81d1c4c04faa7ff6b2946fc7afe30 (patch) | |
tree | 112a14b2b5a9d9b10818f4bc3905dab7564fc8ea /parsers/survex.py | |
parent | 823ef5b7e7b3dfa6ddf6226da838f8b4aa9a9932 (diff) | |
download | troggle-8d901efdfcb81d1c4c04faa7ff6b2946fc7afe30.tar.gz troggle-8d901efdfcb81d1c4c04faa7ff6b2946fc7afe30.tar.bz2 troggle-8d901efdfcb81d1c4c04faa7ff6b2946fc7afe30.zip |
refactoring wallets and expos survey lengths code
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 42b71a3..1256c03 100644 --- a/parsers/survex.py +++ b/parsers/survex.py @@ -306,7 +306,7 @@ class LoadingSurvex: rx_argsref = re.compile(r"(?i)^[\s.:]*((?:19[6789]\d)|(?:20[012345]\d))\s*#?\s*(X)?\s*(.*?\d+.*?)$") rx_badmerge = re.compile(r"(?i).*(\>\>\>\>\>)|(\=\=\=\=\=)|(\<\<\<\<\<).*$") rx_ref2 = re.compile(r"(?i)\s*ref[.;]?") - rx_commteam = re.compile(r"(?i)\s*(Messteam|Zeichner)\s*[:]?(.*)") + rx_commteam = re.compile(r"(?i)\s*(Messteam|Zeichner|LUSS Dead Mountains)\s*[:]?(.*)") # non-expo survex files rx_quotedtitle = re.compile(r'(?i)^"(.*)"$') """ |