diff options
author | Sam Wenham <sam@wenhams.co.uk> | 2019-03-09 18:21:10 +0000 |
---|---|---|
committer | Sam Wenham <sam@wenhams.co.uk> | 2019-03-09 18:21:10 +0000 |
commit | 7a7433bc844b1ac9bd8046e5a996d43ea4c5523e (patch) | |
tree | 7a1207160143422086bcc8c5f2efec1d491375ae /parsers | |
parent | ff8c5ef0c1df3cbb13b128eac7b3b9e328d99ca2 (diff) | |
download | troggle-7a7433bc844b1ac9bd8046e5a996d43ea4c5523e.tar.gz troggle-7a7433bc844b1ac9bd8046e5a996d43ea4c5523e.tar.bz2 troggle-7a7433bc844b1ac9bd8046e5a996d43ea4c5523e.zip |
Fix people list
Cope with Jimmy McFoo as a name!
Don't set the top expo value in the code whin it is piss easy to calculate
Fix typo from last commit
Diffstat (limited to 'parsers')
-rw-r--r-- | parsers/logbooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsers/logbooks.py b/parsers/logbooks.py index 22674c6..ffd8e21 100644 --- a/parsers/logbooks.py +++ b/parsers/logbooks.py @@ -304,7 +304,7 @@ def LoadLogbookForExpedition(expedition): parsefunc = settings.DEFAULT_LOGBOOK_PARSER except (IOError): logbook_parseable = False - print("Couldn't open default logbook file and nothing set for expo " + expo.year) + print("Couldn't open default logbook file and nothing set for expo " + expedition.year) if logbook_parseable: parser = globals()[parsefunc] |