summaryrefslogtreecommitdiffstats
path: root/parsers/logbooks.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-01-29 16:23:58 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-01-29 16:23:58 +0000
commit432be660a4782183777a74bec54082e6edf19542 (patch)
tree0478eba490fef01baf57048e5638fd78f37111bd /parsers/logbooks.py
parentf73640522bdd9d218fb00786b54b683da23a17b5 (diff)
downloadtroggle-432be660a4782183777a74bec54082e6edf19542.tar.gz
troggle-432be660a4782183777a74bec54082e6edf19542.tar.bz2
troggle-432be660a4782183777a74bec54082e6edf19542.zip
separated out Model for wallet to its own file
Diffstat (limited to 'parsers/logbooks.py')
-rw-r--r--parsers/logbooks.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/parsers/logbooks.py b/parsers/logbooks.py
index 1d23215..22cdf84 100644
--- a/parsers/logbooks.py
+++ b/parsers/logbooks.py
@@ -66,7 +66,7 @@ ENTRIES = {
"2017": 74,
"2016": 86,
"2015": 80,
- "2014": 66,
+ "2014": 67,
"2013": 52,
"2012": 76,
"2011": 71,
@@ -366,14 +366,14 @@ def parser_html(year, expedition, txt, seq=""):
if check in dupl:
dupl[check] += 1
triptitle = f"{triptitle} #{dupl[check]}"
- print(f" - {triptitle} -- {date}")
+ print(f" - {triptitle} -- {ldate}")
else:
dupl[check] = 1
tu = tidy_time_underground(tu)
trippersons, author = tidy_trip_persons(trippeople, expedition, tu, tid)
tripcave = tidy_trip_cave(place)
- tripcontent = tidy_trip_image_urls(tripcontent, date)
+ tripcontent = tidy_trip_image_urls(tripcontent, ldate)
tid = tidy_tid(tid, triptitle)
entrytuple = (ldate, place, tripcave, triptitle, tripcontent, trippersons, author, expedition, tu, tid)