python: make dbus, gi examples, and debug-helper.py python3 ready

https://bugzilla.gnome.org/show_bug.cgi?id=791121
This commit is contained in:
Yifan J
2017-12-02 12:44:50 +08:00
committed by Thomas Haller
parent 5e239d2c04
commit 797d9c4403
25 changed files with 104 additions and 104 deletions

View File

@@ -35,7 +35,7 @@ def merge_secrets(proxy, config, setting_name):
for setting in secrets:
for key in secrets[setting]:
config[setting_name][key] = secrets[setting][key]
except Exception, e:
except Exception as e:
pass
def dict_to_string(d, indent):
@@ -64,9 +64,9 @@ def dict_to_string(d, indent):
def connection_to_string(config):
# dump a connection configuration to a the console
for setting_name in config:
print " Setting: %s" % setting_name
print dict_to_string(config[setting_name], " ")
print ""
print(" Setting: %s" % setting_name)
print(dict_to_string(config[setting_name], " "))
print("")
def print_connections():
@@ -95,13 +95,13 @@ def print_connections():
# Get the details of the 'connection' setting
s_con = config['connection']
print " name: %s" % s_con['id']
print " uuid: %s" % s_con['uuid']
print " type: %s" % s_con['type']
print " ------------------------------------------"
print(" name: %s" % s_con['id'])
print(" uuid: %s" % s_con['uuid'])
print(" type: %s" % s_con['type'])
print(" ------------------------------------------")
connection_to_string(config)
print ""
print("")
print_connections()