Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-03-01 17:52:42 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-03-01 17:52:42 (GMT)
commitdbf2c0c1a27894a71babb3aefbe9db6c741f67a3 (patch)
tree8ad0346a7624f9f7faf6b116e1c7bbdce9e807ad /services
parentf2af1ae219f6bfe9bdd2cddd2657733353bb8d45 (diff)
get object path correctly
Diffstat (limited to 'services')
-rw-r--r--services/datastore/dbus_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/datastore/dbus_helpers.py b/services/datastore/dbus_helpers.py
index f35958e..4800e9b 100644
--- a/services/datastore/dbus_helpers.py
+++ b/services/datastore/dbus_helpers.py
@@ -163,7 +163,7 @@ class FallbackObject(dbus.service.Object):
keywords[parent_method._dbus_sender_keyword] = message.get_sender()
if parent_method._dbus_object_path_keyword:
- keywords[parent_method._dbus_object_path_keyword] = message.get_object_path()
+ keywords[parent_method._dbus_object_path_keyword] = message.get_path()
# call method
retval = candidate_method(self, *args, **keywords)