summaryrefslogtreecommitdiffstats
path: root/parsers/survex.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2022-09-20 01:02:06 +0300
committerPhilip Sargent <philip.sargent@klebos.com>2022-09-20 01:02:06 +0300
commit61f9863a068a0e2d128a100088cf42c0c61c97ab (patch)
tree567baea54e0f3f4ef0f54842588fbdf558a2dc4f /parsers/survex.py
parent47878d264b05aaed621be6dfa52887fa4fe76cb4 (diff)
downloadtroggle-61f9863a068a0e2d128a100088cf42c0c61c97ab.tar.gz
troggle-61f9863a068a0e2d128a100088cf42c0c61c97ab.tar.bz2
troggle-61f9863a068a0e2d128a100088cf42c0c61c97ab.zip
bug fixes and coping with a list of cave ids in JSON
Diffstat (limited to 'parsers/survex.py')
-rw-r--r--parsers/survex.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/parsers/survex.py b/parsers/survex.py
index 7693826..d3eec8c 100644
--- a/parsers/survex.py
+++ b/parsers/survex.py
@@ -230,6 +230,7 @@ class LoadingSurvex():
if mteammember:
for tm in self.rx_person.split(mteammember.group(2)):
if tm:
+ tm = tm.strip('\"\'')
personexpedition = survexblock.expedition and GetPersonExpeditionNameLookup(survexblock.expedition).get(tm.lower())
if (personexpedition, tm) not in teammembers:
teammembers.append((personexpedition, tm))