diff options
author | Philip Sargent <philip@Muscogee.localdomain> | 2020-04-27 23:51:41 +0100 |
---|---|---|
committer | Philip Sargent <philip@Muscogee.localdomain> | 2020-04-27 23:51:41 +0100 |
commit | a8460065a41a76ea2ea59ce09daff8e5bff51aea (patch) | |
tree | 2a5715c59511e1487a94f14d185531bc4cab431a /parsers/people.py | |
parent | 2b39dec560b8029e3d0ef6f1fae2b1ecfc759f97 (diff) | |
download | troggle-a8460065a41a76ea2ea59ce09daff8e5bff51aea.tar.gz troggle-a8460065a41a76ea2ea59ce09daff8e5bff51aea.tar.bz2 troggle-a8460065a41a76ea2ea59ce09daff8e5bff51aea.zip |
Thorough spring clean and profiling
Diffstat (limited to 'parsers/people.py')
-rw-r--r-- | parsers/people.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parsers/people.py b/parsers/people.py index f7e2f50..32ab2c5 100644 --- a/parsers/people.py +++ b/parsers/people.py @@ -58,7 +58,7 @@ def LoadPersonsExpos(): header = dict(zip(headers, range(len(headers)))) # make expeditions - print("Loading expeditions") + print(" - Loading expeditions") years = headers[5:] for year in years: @@ -68,7 +68,7 @@ def LoadPersonsExpos(): save_carefully(models.Expedition, lookupAttribs, nonLookupAttribs) # make persons - print("Loading personexpeditions") + print(" - Loading personexpeditions") for personline in personreader: name = personline[header["Name"]] |