diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-07-04 01:10:53 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-07-04 01:10:53 +0100 |
commit | 51d0daafdd6d1a41874eb4a797da1619960388ff (patch) | |
tree | da6405d558b1fb844fadb9c758991f554b8c9043 /parsers/imports.py | |
parent | 5ed6271c086277b08982136c3433e544a5b4d4fe (diff) | |
download | troggle-51d0daafdd6d1a41874eb4a797da1619960388ff.tar.gz troggle-51d0daafdd6d1a41874eb4a797da1619960388ff.tar.bz2 troggle-51d0daafdd6d1a41874eb4a797da1619960388ff.zip |
QM placeholder logbook entries sorted out
Diffstat (limited to 'parsers/imports.py')
-rw-r--r-- | parsers/imports.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parsers/imports.py b/parsers/imports.py index f8c98a3..beb4139 100644 --- a/parsers/imports.py +++ b/parsers/imports.py @@ -34,23 +34,23 @@ def import_logbooks(): troggle.parsers.logbooks.LoadLogbooks() def import_QMs(): - print("Importing QMs (old caves)") + print("-- Importing old QMs for 161, 204, 234 from CSV files") troggle.parsers.QMs.Load_QMs() def import_survex(): # when this import is moved to the top with the rest it all crashes horribly import troggle.parsers.survex - print("-- Importing Survex Blocks") + print("-- Importing Survex and Entrance Positions") print(" - Survex Blocks") troggle.parsers.survex.LoadSurvexBlocks() print(" - Survex entrances x/y/z Positions") - troggle.parsers.survex.LoadPos() + troggle.parsers.survex.LoadPositions() 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() + troggle.parsers.survex.LoadPositions() def import_drawingsfiles(): print("-- Importing Drawings files") |