Add newline for readability

This commit is contained in:
nyuszika7h 2016-11-04 00:06:26 +01:00
parent 5b761c60b5
commit 136e41a14c

View File

@ -62,7 +62,7 @@ class handle_error:
fn = lambda: errlog("\n{0}\n\n".format(data))
data = traceback.format_exc()
variables = ["\nLocal variables from innermost frame:"]
variables = ["\nLocal variables from innermost frame:\n"]
for name, value in _local.frame_locals.items():
variables.append("{0} = {1!r}".format(name, value))