From ec58dcfa4e78069500801740d050a2ce9f36adeb Mon Sep 17 00:00:00 2001 From: Scott Feeney Date: Tue, 30 Jul 2013 17:56:20 -0400 Subject: [PATCH] Add missing newline to unminified stacktrace output (imported from commit 6abc3d1aced29de546a890b40fdbe486c6e80aed) --- zephyr/lib/unminify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/lib/unminify.py b/zephyr/lib/unminify.py index 942a2f7b3e..31bd1d4397 100644 --- a/zephyr/lib/unminify.py +++ b/zephyr/lib/unminify.py @@ -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'