diff --git a/mycroft/skills/core.py b/mycroft/skills/core.py index c157c30919..73c9870e05 100644 --- a/mycroft/skills/core.py +++ b/mycroft/skills/core.py @@ -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)