From 0a3f743b234171068ea5df213bf41937e20e160a Mon Sep 17 00:00:00 2001 From: "Matthew D. Scholefield" Date: Fri, 1 Jun 2018 16:11:14 -0500 Subject: [PATCH] Fix missing attribute in error --- mycroft/skills/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)