Fix missing attribute in error
parent
321807b1f1
commit
0a3f743b23
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue