Fix a regression caused by the previous change

This commit is contained in:
Thomas Nagy 2018-07-03 07:53:19 +02:00
parent 1787ec1f20
commit 1f5e3e2d6c
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 1 additions and 1 deletions

View File

@ -1188,7 +1188,7 @@ def compile_fun_noshell(line):
# plain code such as ${tsk.inputs[0].abspath()}
call = '%s%s' % (var, code)
add_dvar(call)
app('gen.to_list(%s%s)' % call)
app('gen.to_list(%s)' % call)
else:
# a plain variable such as # a plain variable like ${AR}
app('to_list(env[%r])' % var)