master/worker: use only first line in short_exc_info

This commit is contained in:
Sebastien Bourdeauducq 2016-03-25 19:43:12 +08:00
parent bebd89c959
commit ca4e6e03fa
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ def main():
short_exc_info = type(exc).__name__
exc_str = str(exc)
if exc_str:
short_exc_info += ": " + exc_str
short_exc_info += ": " + exc_str.splitlines()[0]
lines = ["Terminating with exception ("+short_exc_info+")\n"]
if hasattr(exc, "artiq_core_exception"):
lines.append(str(exc.artiq_core_exception))