diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-11-14 18:01:44 +0200 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-11-14 18:01:44 +0200 |
commit | 680477d2d557a4dffdab88d6e5e78ccd239dec1c (patch) | |
tree | 4dff57916097c0c2877c3235323036b35d20c874 | |
parent | 6bc0884d43e54718d95847359e1abf4d221247f0 (diff) | |
download | troggle-680477d2d557a4dffdab88d6e5e78ccd239dec1c.tar.gz troggle-680477d2d557a4dffdab88d6e5e78ccd239dec1c.tar.bz2 troggle-680477d2d557a4dffdab88d6e5e78ccd239dec1c.zip |
better error msg
-rw-r--r-- | parsers/survex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsers/survex.py b/parsers/survex.py index 15a4c67..260cc9b 100644 --- a/parsers/survex.py +++ b/parsers/survex.py @@ -2681,7 +2681,7 @@ def LoadSurvexBlocks(): # duration = time.time() - start # print(f" - TIME: {duration:7.2f} s", file=sys.stderr) if dup_includes > 0: - print(f" - ERROR: There are {dup_includes} duplicate *includes in the final list") + print(f" - ERROR: There are {dup_includes} duplicate *includes in the final list. See DataIssues report.") print(" - Loaded All Survex Blocks.") |