We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf7d6b5 commit c79511bCopy full SHA for c79511b
cwltool/sandboxjs.py
@@ -48,7 +48,7 @@ def term():
48
tm.cancel()
49
50
def fn_linenum():
51
- return "\n".join("%04i %s" % (i, b) for i, b in enumerate(fn.split("\n")))
+ return "\n".join("%04i %s" % (i+1, b) for i, b in enumerate(fn.split("\n")))
52
53
if killed:
54
raise JavascriptException("Long-running script killed after %s seconds.\nscript was:\n%s\n" % (timeout, fn_linenum()))
0 commit comments