diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-15 17:08:56 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-15 17:08:56 -0400 |
commit | 7189b181ef3e0da74d992da87771fa26399391bc (patch) | |
tree | 3c6b677a54161fb63cb169c93d9eade0b316b4da /scripts/confirm.py | |
parent | 78c44b5e795a98baacfbc56943b784370956cbca (diff) | |
download | fork-ledger-7189b181ef3e0da74d992da87771fa26399391bc.tar.gz fork-ledger-7189b181ef3e0da74d992da87771fa26399391bc.tar.bz2 fork-ledger-7189b181ef3e0da74d992da87771fa26399391bc.zip |
further restructuring
Diffstat (limited to 'scripts/confirm.py')
-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: |