summaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
authorJohan Sandelin <johan@alphafish.com>2010-03-23 15:15:33 +0100
committerSimon McVittie <smcv@debian.org>2010-03-24 12:25:49 +0000
commitf68a143ac3b19bd40709cbc85b5112fcb0d2e07b (patch)
treed5f2bd73c91e70924c4bb6685e8779e78f59efc7 /dbus
parente2262071188067360a7798ae30d4b694229f6f0f (diff)
Fixed typo in dbus/bus.py where list_activatable_names would call org.freedesktop.DBus.ListNames instead of org.freedesktop.DBus.ListActivatableNames
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'dbus')
-rw-r--r--dbus/bus.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/bus.py b/dbus/bus.py
index edd5ef7..86c655d 100644
--- a/dbus/bus.py
+++ b/dbus/bus.py
@@ -339,7 +339,7 @@ class BusConnection(Connection):
:Since: 0.81.0
"""
return self.call_blocking(BUS_DAEMON_NAME, BUS_DAEMON_PATH,
- BUS_DAEMON_IFACE, 'ListNames',
+ BUS_DAEMON_IFACE, 'ListActivatableNames',
'', (), utf8_strings=True)
def get_name_owner(self, bus_name):