Skip to content

Commit e6b73d7

Browse files
committed
Add missing bracket
1 parent 0e2a299 commit e6b73d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/sandboxjs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def stdfmt(data): # type: (Text) -> Text
293293
(nodejs.returncode, fn_linenum(), stdfmt(stdoutdata.decode('utf-8')), stdfmt(stderrdata.decode('utf-8')))
294294
else:
295295
info = stdfmt(u"Javascript expression was: %s\nstdout was: %s\nstderr was: %s" %\
296-
(js, stdfmt(stdoutdata.decode('utf-8')), stdfmt(stderrdata.decode('utf-8')))
296+
(js, stdfmt(stdoutdata.decode('utf-8')), stdfmt(stderrdata.decode('utf-8'))))
297297

298298
if nodejs.poll() not in (None, 0):
299299
if killed:

0 commit comments

Comments
 (0)