From 5618e6182ded0d1861a9fcb5a26440e4454801f6 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 29 May 2007 15:33:18 +0100 Subject: [PATCH] dbus.service: include child nodes in introspection --- dbus/service.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dbus/service.py b/dbus/service.py index 9d3dc3f..be30b9b 100644 --- a/dbus/service.py +++ b/dbus/service.py @@ -530,6 +530,10 @@ class Object(Interface): reflection_data += ' \n' + for name in self._connection.list_exported_child_objects( + self._object_path): + reflection_data += ' \n' % name + reflection_data += '\n' return reflection_data -- 2.11.4.GIT