avoid error for empty "name"
This commit is contained in:
parent
e7d344c4e8
commit
74956c0290
|
@ -68,7 +68,7 @@ for name in filenames:
|
||||||
(['data'] if options.data else []) +
|
(['data'] if options.data else []) +
|
||||||
[]
|
[]
|
||||||
)
|
)
|
||||||
damask.util.report(scriptName,name + ('' if details == '' else ' -- '+details))
|
damask.util.report(scriptName,(name if name is not None else '') + ('' if details == '' else ' -- '+details))
|
||||||
|
|
||||||
# ------------------------------------------ output head ---------------------------------------
|
# ------------------------------------------ output head ---------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue