mirror of https://github.com/zulip/zulip.git
Add missing newline to unminified stacktrace output
(imported from commit 6abc3d1aced29de546a890b40fdbe486c6e80aed)
This commit is contained in:
parent
e8112ff1c1
commit
ec58dcfa4e
|
@ -38,7 +38,7 @@ class SourceMap(object):
|
||||||
out += (' = %s line %d column %d\n' %
|
out += (' = %s line %d column %d\n' %
|
||||||
(result.src, result.src_line+1, result.src_col+1))
|
(result.src, result.src_line+1, result.src_col+1))
|
||||||
except IndexError:
|
except IndexError:
|
||||||
out += ' [Unable to look up in source map]'
|
out += ' [Unable to look up in source map]\n'
|
||||||
|
|
||||||
if ln.startswith(' at'):
|
if ln.startswith(' at'):
|
||||||
out += '\n'
|
out += '\n'
|
||||||
|
|
Loading…
Reference in New Issue