diff options
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") |