diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-30 15:24:42 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-30 15:24:42 +0100 |
commit | be2b17ea8561f7b5678cbba5e5933c603b276dd9 (patch) | |
tree | b76b7e64c23d0ea103f0dc17da3a139a8c1106d6 /parsers/imports.py | |
parent | c4e2ae23957810eb0400193e4f1c47bdf40a75dd (diff) | |
download | troggle-be2b17ea8561f7b5678cbba5e5933c603b276dd9.tar.gz troggle-be2b17ea8561f7b5678cbba5e5933c603b276dd9.tar.bz2 troggle-be2b17ea8561f7b5678cbba5e5933c603b276dd9.zip |
More debugging and warnings
Diffstat (limited to 'parsers/imports.py')
-rw-r--r-- | parsers/imports.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/parsers/imports.py b/parsers/imports.py index 9dcbb17..dcd064d 100644 --- a/parsers/imports.py +++ b/parsers/imports.py @@ -46,6 +46,12 @@ def import_survex(): print(" - Survex entrances x/y/z Positions") troggle.parsers.survex.LoadPos() +def import_loadpos(): + # when this import is moved to the top with the rest it all crashes horribly + import troggle.parsers.survex + print(" - Survex entrances x/y/z Positions") + troggle.parsers.survex.LoadPos() + def import_tunnelfiles(): print("Importing Tunnel files") troggle.parsers.surveys.LoadTunnelFiles() |