X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/ba7fcbcc1f4337a50435f66a2282032145bf92e9..e9d557ac36da8752fd871dd30394a8e3efe0852d:/config.py diff --git a/config.py b/config.py index fa3a133..6b6d588 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.check_output(['ledger', '--version'])[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']