summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bechtold <thomasbechtold@jpberlin.de>2013-05-25 18:34:15 +0200
committerThomas Bechtold <thomasbechtold@jpberlin.de>2013-05-25 18:34:15 +0200
commit1098241821c9de225875ef99ef8bb76201748f85 (patch)
tree389b1ee7ed1e4d60d604c5736f91684a2dbaf937
parenta52f69c0b4fa3cc39d33eb6e98a8c6f634cd9179 (diff)
downloadd-feet-1098241821c9de225875ef99ef8bb76201748f85.tar.gz
Use dbus_is_address() instead of dbus_is_supported_address()
-rw-r--r--src/dfeet/introspection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dfeet/introspection.py b/src/dfeet/introspection.py
index 3224036..52a8b7d 100644
--- a/src/dfeet/introspection.py
+++ b/src/dfeet/introspection.py
@@ -59,7 +59,7 @@ class AddressInfo():
self.connection = Gio.bus_get_sync(self.address, None)
self.__label_address.set_text(
Gio.dbus_address_get_for_bus_sync(self.address, None))
- elif Gio.dbus_is_supported_address(self.address):
+ elif Gio.dbus_is_address(self.address):
self.connection = Gio.DBusConnection.new_for_address_sync(
self.address,
Gio.DBusConnectionFlags.AUTHENTICATION_CLIENT |