X-Git-Url: https://projects.mako.cc/source/iron-blogger/blobdiff_plain/2c61e383ade53f4af779f2398dd8e71d00b70b8c..aa2ed967644a8ae2d4fb77b280a9febd06f01995:/config.py?ds=sidebyside diff --git a/config.py b/config.py index fa3a133..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.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']