Skip to content

Commit

Permalink
improve error messages in gui
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhrisca committed Feb 23, 2019
1 parent 4f87250 commit e70525d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asammdf/gui/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,5 @@ def __init__(self, *args, **kargs):
def run(self):
try:
self.output = self._target(*self._args, **self._kwargs)
except Exception as err:
self.error = err
except:
self.error = traceback.format_exc()

0 comments on commit e70525d

Please sign in to comment.