Fix bad access to dictionary
This commit is contained in:
parent
880a2cc8ec
commit
0e9afd7cf1
1 changed files with 1 additions and 1 deletions
2
flacinfo
2
flacinfo
|
@ -92,7 +92,7 @@ def makeMetaflacArgs(inArgs):
|
||||||
def editFlac(args):
|
def editFlac(args):
|
||||||
""" Perfoms the requested edition operations """
|
""" Perfoms the requested edition operations """
|
||||||
metaflacArgs = makeMetaflacArgs(args)
|
metaflacArgs = makeMetaflacArgs(args)
|
||||||
metaflacArgs += args.file
|
metaflacArgs += args['file']
|
||||||
metaflacArgs.insert(0, 'metaflac')
|
metaflacArgs.insert(0, 'metaflac')
|
||||||
metaflacRun = subprocess.run(metaflacArgs)
|
metaflacRun = subprocess.run(metaflacArgs)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue