Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2011-10-06 14:58:53 (GMT)
committer Daniel Drake <dsd@laptop.org>2011-10-09 11:34:56 (GMT)
commit6ec7ba18b4ec2ecfac063b93f0e421b3aadcaa5e (patch)
tree094181b479a160c6392b864792b2582d01e631ec
parent85f6dcf3017c853bacd203616e3f250249f2348d (diff)
Fix presence detection of keyboard layouts/options
"foo is []" is not a valid way of checking if a list is empty as this code intends. "foo" alone as a boolean operator is an equivalent length check, and also serves as a "is not None" check too. PEP8 also confirms this approach: For sequences, (strings, lists, tuples), use the fact that empty sequences are false. Signed-off-by: Daniel Drake <dsd@laptop.org> Acked-By: Sascha Silbe <silbe@activitycentral.com> Acked-by: Simon Schampijer <simon@laptop.org>
-rwxr-xr-xbin/sugar-session5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/sugar-session b/bin/sugar-session
index 4b714c3..a0ec14f 100755
--- a/bin/sugar-session
+++ b/bin/sugar-session
@@ -147,8 +147,7 @@ def setup_keyboard_cb():
layouts_list.append(layout.split('(')[0])
variants_list.append(layout.split('(')[1][:-1])
- if layouts_list is not None and layouts_list is not [] \
- and variants_list is not None and variants_list is not []:
+ if layouts_list and variants_list:
configrec.set_layouts(layouts_list)
configrec.set_variants(variants_list)
@@ -159,7 +158,7 @@ def setup_keyboard_cb():
options = gconf_client.get_list(\
'/desktop/sugar/peripherals/keyboard/options', gconf.VALUE_STRING)
- if options is not [] and options is not None:
+ if options:
configrec.set_options(options)
configrec.activate(engine)