diff --git a/manifest_xml.py b/manifest_xml.py index 0664eff9..1300e916 100644 --- a/manifest_xml.py +++ b/manifest_xml.py @@ -146,9 +146,8 @@ class XmlManifest(object): mp = self.manifestProject groups = mp.config.GetString('manifest.groups') - if not groups: - groups = 'all' - groups = [x for x in re.split(r'[,\s]+', groups) if x] + if groups: + groups = [x for x in re.split(r'[,\s]+', groups) if x] doc = xml.dom.minidom.Document() root = doc.createElement('manifest')