Merge branch 'kappa-error-in-exit-status' into next

This commit is contained in:
Nicolas Sebrecht 2015-05-10 12:01:09 +02:00
commit c8e5f32eba
1 changed files with 2 additions and 0 deletions

View File

@ -500,6 +500,8 @@ class UIBase(object):
#print any exceptions that have occurred over the run
if not self.exc_queue.empty():
self.warn("ERROR: Exceptions occurred during the run!")
if exitstatus == 0:
exitstatus = 1
while not self.exc_queue.empty():
msg, exc, exc_traceback = self.exc_queue.get()
if msg: