diff options
Diffstat (limited to 'examples/python/add-system-wifi-connection.py')
-rwxr-xr-x | examples/python/add-system-wifi-connection.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/python/add-system-wifi-connection.py b/examples/python/add-system-wifi-connection.py index ff3908217..ab0b60202 100755 --- a/examples/python/add-system-wifi-connection.py +++ b/examples/python/add-system-wifi-connection.py @@ -14,7 +14,7 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -# Copyright (C) 2011 Red Hat, Inc. +# Copyright (C) 2010 Red Hat, Inc. # import dbus @@ -56,8 +56,9 @@ con = dbus.Dictionary({ bus = dbus.SystemBus() -proxy = bus.get_object("org.freedesktop.NetworkManager", "/org/freedesktop/NetworkManager/Settings") -settings = dbus.Interface(proxy, "org.freedesktop.NetworkManager.Settings") +print con +proxy = bus.get_object("org.freedesktop.NetworkManagerSystemSettings", "/org/freedesktop/NetworkManagerSettings") +settings = dbus.Interface(proxy, "org.freedesktop.NetworkManagerSettings") settings.AddConnection(con) |