avoid reporting "none" as STDIN filename
This commit is contained in:
parent
80191c10c0
commit
c80b02dd72
|
@ -128,7 +128,8 @@ for name in filenames:
|
|||
outname = outname,
|
||||
buffered = False)
|
||||
except: continue
|
||||
damask.util.report(scriptName,'{}{}'.format(name,' --> {}'.format(outname) if outname else ''))
|
||||
damask.util.report(scriptName,'{}{}'.format(name if name else '',
|
||||
' --> {}'.format(outname) if outname else ''))
|
||||
|
||||
# ------------------------------------------ read header ------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue