summaryrefslogtreecommitdiffstats
path: root/parsers
diff options
context:
space:
mode:
Diffstat (limited to 'parsers')
-rw-r--r--parsers/survex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/parsers/survex.py b/parsers/survex.py
index 1a6118c..3cda53a 100644
--- a/parsers/survex.py
+++ b/parsers/survex.py
@@ -15,7 +15,7 @@ from datetime import datetime
line_leg_regex = re.compile(r"[\d\-+.]+$")
def LoadSurvexLineLeg(survexblock, stardata, sline, comment, cave):
- # The try catches here need replacing as they are relativly expensive
+ # The try catches here need replacing as they are relatively expensive
ls = sline.lower().split()
ssfrom = survexblock.MakeSurvexStation(ls[stardata["from"]])
ssto = survexblock.MakeSurvexStation(ls[stardata["to"]])
@@ -401,4 +401,4 @@ def LoadPos():
ss.z = float(z)
ss.save()
except:
- print("%s not parsed in survex" % name)
+ print("%s not parsed in survex %s" % (name, pos))