From 11ea5861bc3ff5df844ca9917c3c04714472f2b3 Mon Sep 17 00:00:00 2001 From: Martin Vidner Date: Mon, 17 Aug 2009 16:43:54 +0200 Subject: [PATCH] A harmless typo in "list_conections". --- cnetworkmanager | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cnetworkmanager b/cnetworkmanager index e8657a8..6391009 100755 --- a/cnetworkmanager +++ b/cnetworkmanager @@ -220,7 +220,7 @@ def get_connection_devtype(conn): cs = conn.GetSettings() return cs["connection"]["type"] -def list_conections(svc): +def list_connections(svc): acs = nm["ActiveConnections"] acos = map(lambda a: a["Connection"].object_path, acs) @@ -237,9 +237,9 @@ def list_conections(svc): print t if options.usrcon: - list_conections(USER_SERVICE) + list_connections(USER_SERVICE) if options.syscon: - list_conections(SYSTEM_SERVICE) + list_connections(SYSTEM_SERVICE) if options.con_info != None: (svc, con) = ("", options.con_info) -- 2.11.4.GIT