1
0
mirror of https://github.com/gryf/wicd.git synced 2026-02-08 09:25:48 +01:00

change to use dict.get instead of dict[]

This commit is contained in:
Adam Blackburn
2010-01-14 17:46:38 -10:00
parent 89e93cf037
commit 5ba7234b5c

View File

@@ -1254,12 +1254,12 @@ class WirelessDaemon(dbus.service.Object):
# We want to write the essid in addition to bssid
# sections if global settings are enabled.
self.config.remove_section(essid_key)
if cur_network["use_settings_globally"]:
if cur_network.get("use_settings_globally", False):
self.config.add_section(essid_key)
for x in cur_network:
self.config.set(bssid_key, x, cur_network[x])
if cur_network["use_settings_globally"]:
if cur_network.get("use_settings_globally", False):
self.config.set(essid_key, x, cur_network[x])
write_script_ent(bssid_key, "beforescript")
@@ -1267,7 +1267,7 @@ class WirelessDaemon(dbus.service.Object):
write_script_ent(bssid_key, "predisconnectscript")
write_script_ent(bssid_key, "postdisconnectscript")
if cur_network["use_settings_globally"]:
if cur_network.get("use_settings_globally", False):
write_script_ent(essid_key, "beforescript")
write_script_ent(essid_key, "afterscript")
write_script_ent(essid_key, "predisconnectscript")