From d16daaee4a77f413876b10465e0d36eafb280dc9 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Sat, 25 Aug 2012 12:25:02 -0400 Subject: [PATCH] fix typo in last change to config file --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 6b6d588..0a65e79 100644 --- a/config.py +++ b/config.py @@ -17,7 +17,7 @@ FINE_SIZE = 5 CURRENCY = "$" # check the version of ledger to find out which commands to use -if subprocess.Popen(['ledger', '--version'], stdout=subprocess.PIPE).communicate()[0][7] == '3' +if subprocess.Popen(['ledger', '--version'], stdout=subprocess.PIPE).communicate()[0][7] == '3': BALANCE_CMD = ['ledger', '-f', os.path.join(HERE,'ledger'), '--no-color', '-n', 'balance'] -- 2.30.2