diff options
Diffstat (limited to 'command.py')
-rw-r--r-- | command.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ class Command(object): | |||
69 | mp = self.manifest.manifestProject | 69 | mp = self.manifest.manifestProject |
70 | 70 | ||
71 | groups = mp.config.GetString('manifest.groups') | 71 | groups = mp.config.GetString('manifest.groups') |
72 | if groups is None: | 72 | if not groups: |
73 | groups = 'default,platform-' + platform.system().lower() | 73 | groups = 'default,platform-' + platform.system().lower() |
74 | groups = [x for x in re.split('[,\s]+', groups) if x] | 74 | groups = [x for x in re.split('[,\s]+', groups) if x] |
75 | 75 | ||