summaryrefslogtreecommitdiffstats
path: root/python/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/service.py')
-rw-r--r--python/service.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/service.py b/python/service.py
index 409fc78a..6c3561ad 100644
--- a/python/service.py
+++ b/python/service.py
@@ -2,6 +2,8 @@
import dbus_bindings
import _dbus
import operator
+import traceback
+
from exceptions import UnknownMethodException
from decorators import method
from decorators import signal
@@ -170,7 +172,7 @@ def _method_reply_error(connection, message, exception):
else:
name = 'org.freedesktop.DBus.Python.%s.%s' % (exception.__module__, exception.__class__.__name__)
- contents = str(exception)
+ contents = traceback.format_exc()
reply = dbus_bindings.Error(message, name, contents)
connection.send(reply)