diff options
Diffstat (limited to 'examples/gconf-proxy-client.py')
-rwxr-xr-x | examples/gconf-proxy-client.py | 2 |
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() |