diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/confirm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/confirm.py b/scripts/confirm.py index ea39e94b..1132ca0c 100755 --- a/scripts/confirm.py +++ b/scripts/confirm.py @@ -15,7 +15,7 @@ last_line = "" for line in os.popen("../ledger %s reg %s" % (sys.argv[1], sys.argv[2])): value = clean(line[55:67]) - total = clean(line[68:80]) + total = clean(line[68:]) running_total += value if abs(running_total - total) > 0.001: |