Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-11-03 15:01:46 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-11-03 15:01:46 (GMT)
commitda3c550bfd935fcdf18c04c021b3ff0cd33e13b3 (patch)
tree39a8b9c10866c4f3363e0758b8201cc20beed40f /sugar
parent561169809b92e29cfd762c3cd673def881764dcc (diff)
Fix show_launcher logic
Diffstat (limited to 'sugar')
-rw-r--r--sugar/activity/bundle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar/activity/bundle.py b/sugar/activity/bundle.py
index 655868c..17a9eb7 100644
--- a/sugar/activity/bundle.py
+++ b/sugar/activity/bundle.py
@@ -45,8 +45,8 @@ class Bundle:
logging.error('%s must specify an exec' % self._path)
if cp.has_option(section, 'show_launcher'):
- if cp.get(section, 'show_launcher') == 'yes':
- self._show_launcher = True
+ if cp.get(section, 'show_launcher') == 'no':
+ self._show_launcher = False
if cp.has_option(section, 'icon'):
self._icon = cp.get(section, 'icon')