Fix missing attribute in error
parent
321807b1f1
commit
0a3f743b23
|
@ -606,7 +606,7 @@ class MycroftSkill(object):
|
||||||
self.speak(msg)
|
self.speak(msg)
|
||||||
LOG.exception(msg)
|
LOG.exception(msg)
|
||||||
# append exception information in message
|
# append exception information in message
|
||||||
skill_data['exception'] = e.message
|
skill_data['exception'] = repr(e)
|
||||||
finally:
|
finally:
|
||||||
if once:
|
if once:
|
||||||
self.remove_event(name)
|
self.remove_event(name)
|
||||||
|
|
Loading…
Reference in New Issue