summaryrefslogtreecommitdiff
path: root/examples/gconf-proxy-client.py
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2015-12-04 15:13:22 +0000
committerSimon McVittie <smcv@debian.org>2015-12-04 15:13:22 +0000
commit77075d82f4ec39c35d14536cf13e4266839ae81f (patch)
tree5322034ac6c805a7fd1a815d6f8169880f0773c9 /examples/gconf-proxy-client.py
parent1dbda697112becc44e0aa8e303159e0fae5852a3 (diff)
Use a name in example.com for our example GConf proxy
dbus-python is not a GNOME project, so we should not use their namespace. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=85720
Diffstat (limited to 'examples/gconf-proxy-client.py')
-rwxr-xr-xexamples/gconf-proxy-client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gconf-proxy-client.py b/examples/gconf-proxy-client.py
index 2e440f4..431c4b0 100755
--- a/examples/gconf-proxy-client.py
+++ b/examples/gconf-proxy-client.py
@@ -28,7 +28,7 @@ import dbus
gconf_key = "/desktop/gnome/file_views/icon_theme"
bus = dbus.SessionBus()
-gconf_key_object = dbus.Interface(bus.get_object("org.gnome.GConf.Example", "/org/gnome/GConf" + gconf_key), "org.gnome.GConf")
+gconf_key_object = dbus.Interface(bus.get_object("com.example.GConfProxy", "/org/gnome/GConf" + gconf_key), "org.gnome.GConf")
value = gconf_key_object.getString()