View Single Post
Posts: 1,224 | Thanked: 1,763 times | Joined on Jul 2007
#4
The first string in get_statistics gives you the id of the string. you need to look at the gconf database to convert it to a name.

In python you need to do something like:

self.conns = gconf_client.all_dirs("/system/osso/connectivity/IAP")
for item in self.conns:
name=gconf_client.get_string(item+"/name")
 

The Following User Says Thank You to Matan For This Useful Post: