summaryrefslogtreecommitdiffstats
path: root/parsers/survex.py
diff options
context:
space:
mode:
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))