diff options
author | John Wiegley <johnw@newartisans.com> | 2005-04-15 19:48:14 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:08 -0400 |
commit | fe4fc00dbe4c5a75a2d17310a97832faa2dd4281 (patch) | |
tree | ce5c289cca51e6293136e65960da38ec9c26744b /main.py | |
parent | 4ed5b629998a71c474d75a9259be3e9f1cfc2afd (diff) | |
download | fork-ledger-fe4fc00dbe4c5a75a2d17310a97832faa2dd4281.tar.gz fork-ledger-fe4fc00dbe4c5a75a2d17310a97832faa2dd4281.tar.bz2 fork-ledger-fe4fc00dbe4c5a75a2d17310a97832faa2dd4281.zip |
Added missing colons.
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -249,9 +249,9 @@ else: if config.reconcile_balance: reconcilable = False - if config.reconcile_balance == "<all>" + if config.reconcile_balance == "<all>": reconcilable = True - else + else: target_balance = Value (config.reconcile_balance) cutoff = time.time () |