diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-07-01 22:49:38 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-07-01 22:49:38 +0100 |
commit | df434cd39909d177f98dec5a7575f61ea701c102 (patch) | |
tree | 3e37aee9a8ab1e4e2515170c774c4fa7f6b20514 /parsers/imports.py | |
parent | 8cc768e5b6398e4f3fe3211b3f8dc9712e58dd93 (diff) | |
download | troggle-df434cd39909d177f98dec5a7575f61ea701c102.tar.gz troggle-df434cd39909d177f98dec5a7575f61ea701c102.tar.bz2 troggle-df434cd39909d177f98dec5a7575f61ea701c102.zip |
SurvexBlocks now importing in deatil
Diffstat (limited to 'parsers/imports.py')
-rw-r--r-- | parsers/imports.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/parsers/imports.py b/parsers/imports.py index c2965c2..f8c98a3 100644 --- a/parsers/imports.py +++ b/parsers/imports.py @@ -16,21 +16,21 @@ import troggle.parsers.logbooks import troggle.parsers.QMs def import_caves(): - print("Importing Caves to ",end="") + print("-- Importing Caves to ",end="") print(django.db.connections.databases['default']['NAME']) troggle.parsers.caves.readcaves() def import_people(): - print("Importing People (folk.csv) to ",end="") + print("-- Importing People (folk.csv) to ",end="") print(django.db.connections.databases['default']['NAME']) troggle.parsers.people.LoadPersonsExpos() def import_surveyscans(): - print("Importing Survey Scans") + print("-- Importing Survey Scans") troggle.parsers.surveys.LoadListScans() def import_logbooks(): - print("Importing Logbooks") + print("-- Importing Logbooks") troggle.parsers.logbooks.LoadLogbooks() def import_QMs(): @@ -40,7 +40,7 @@ def import_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 Blocks") print(" - Survex Blocks") troggle.parsers.survex.LoadSurvexBlocks() print(" - Survex entrances x/y/z Positions") @@ -53,6 +53,6 @@ def import_loadpos(): troggle.parsers.survex.LoadPos() def import_drawingsfiles(): - print("Importing Drawings files") + print("-- Importing Drawings files") troggle.parsers.surveys.LoadDrawingFiles() |