diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-03-12 01:09:17 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-03-12 01:09:17 +0000 |
commit | 35e9eb558d0ef7fb34d8ed7140a684cdce0998cf (patch) | |
tree | 022482d96019c72102f58f56d482c53b2796ee48 /core/views/survex.py | |
parent | b88b1423328d26081457e9d0bb5f55cf86232f24 (diff) | |
download | troggle-35e9eb558d0ef7fb34d8ed7140a684cdce0998cf.tar.gz troggle-35e9eb558d0ef7fb34d8ed7140a684cdce0998cf.tar.bz2 troggle-35e9eb558d0ef7fb34d8ed7140a684cdce0998cf.zip |
Identified survey length discrepencies
Diffstat (limited to 'core/views/survex.py')
-rw-r--r-- | core/views/survex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/survex.py b/core/views/survex.py index edc3b1f..2a750aa 100644 --- a/core/views/survex.py +++ b/core/views/survex.py @@ -353,7 +353,7 @@ def svx(request, survex_file): svxlength = 0.0 for b in svxblocksall: svxlength += b.legslength - print(svxlength,b) + print(svxlength,b, b.legsall) except AttributeError: # some survexfiles just *include files and have no blocks themselves svxblocksall = [] else: |