Fix missing attribute in error

pull/1622/head
Matthew D. Scholefield 2018-06-01 16:11:14 -05:00
parent 321807b1f1
commit 0a3f743b23
1 changed files with 1 additions and 1 deletions

View File

@ -606,7 +606,7 @@ class MycroftSkill(object):
self.speak(msg)
LOG.exception(msg)
# append exception information in message
skill_data['exception'] = e.message
skill_data['exception'] = repr(e)
finally:
if once:
self.remove_event(name)