diff options
| -rw-r--r-- | manifest_xml.py | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/manifest_xml.py b/manifest_xml.py index 36f8ef87..73f6c428 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
| @@ -139,9 +139,8 @@ class XmlManifest(object): | |||
| 139 | mp = self.manifestProject | 139 | mp = self.manifestProject | 
| 140 | 140 | ||
| 141 | groups = mp.config.GetString('manifest.groups') | 141 | groups = mp.config.GetString('manifest.groups') | 
| 142 | if not groups: | 142 | if groups: | 
| 143 | groups = 'all' | 143 | groups = [x for x in re.split(r'[,\s]+', groups) if x] | 
| 144 | groups = [x for x in re.split(r'[,\s]+', groups) if x] | ||
| 145 | 144 | ||
| 146 | doc = xml.dom.minidom.Document() | 145 | doc = xml.dom.minidom.Document() | 
| 147 | root = doc.createElement('manifest') | 146 | root = doc.createElement('manifest') | 
