Add missing newline to unminified stacktrace output

(imported from commit 6abc3d1aced29de546a890b40fdbe486c6e80aed)
This commit is contained in:
Scott Feeney 2013-07-30 17:56:20 -04:00
parent e8112ff1c1
commit ec58dcfa4e
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class SourceMap(object):
out += (' = %s line %d column %d\n' %
(result.src, result.src_line+1, result.src_col+1))
except IndexError:
out += ' [Unable to look up in source map]'
out += ' [Unable to look up in source map]\n'
if ln.startswith(' at'):
out += '\n'