From 0e9afd7cf11fadb71a71c146a3554483aaa995e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Thu, 18 Jan 2018 23:16:15 +0100 Subject: [PATCH] Fix bad access to dictionary --- flacinfo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flacinfo b/flacinfo index ef1c987..8fdcf61 100755 --- a/flacinfo +++ b/flacinfo @@ -92,7 +92,7 @@ def makeMetaflacArgs(inArgs): def editFlac(args): """ Perfoms the requested edition operations """ metaflacArgs = makeMetaflacArgs(args) - metaflacArgs += args.file + metaflacArgs += args['file'] metaflacArgs.insert(0, 'metaflac') metaflacRun = subprocess.run(metaflacArgs)