diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-11-23 22:07:49 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-11-23 22:07:49 +0000 |
commit | d3042264b320b091523e981fdc712c40725864fc (patch) | |
tree | 9a5663422a4ed1f931edf6a5cfdab4f73b748f16 /parsers | |
parent | 2598126879b6fb7bf8508ec6dd592b1cbdb6196a (diff) | |
download | troggle-d3042264b320b091523e981fdc712c40725864fc.tar.gz troggle-d3042264b320b091523e981fdc712c40725864fc.tar.bz2 troggle-d3042264b320b091523e981fdc712c40725864fc.zip |
better error message
Diffstat (limited to 'parsers')
-rw-r--r-- | parsers/survex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parsers/survex.py b/parsers/survex.py index e59a3bb..8552624 100644 --- a/parsers/survex.py +++ b/parsers/survex.py @@ -2709,12 +2709,12 @@ def set_survexblocks(): pass elif b.scanswallet: if b.date > date(2024, 1, 1) and b.date < date(2025, 1, 1): - print(f"2024-check not set{wallet} on {b.survexfile} for block {b} as set explicitly to {b.scanswallet}") + print(f"2024-check: not set{wallet} on {b.survexfile} for block {b} as set explicitly to {b.scanswallet}") else: b.scanswallet = wallet b.save() if b.date > date(2024, 1, 1) and b.date < date(2025, 1, 1): - print(f"2024-check setting {wallet} on {b.survexfile} for block {b}") + print(f"2024-check: setting {wallet} on {b.survexfile} for block {b}") def survexifywallets(): """Gets the caves from the list of survexblocks |