commit | 0290cad5db0eef3b15eb976dd7a017837e36c8b7 | [log] [tgz] |
---|---|---|
author | Conley Owens <cco3@android.com> | Mon Jan 14 22:34:13 2013 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Jan 14 22:34:13 2013 +0000 |
tree | 70cbd27abcad80e79699e63c5bc184e54f7c3ab9 | |
parent | a9f11b3cb281270084526a490dc61625b51b8192 [diff] | |
parent | 0c635bb42708bb2151a92c39b31464bde1ab46f4 [diff] |
Merge "Make -notdefault a default manifest group"
diff --git a/manifest_xml.py b/manifest_xml.py index 0664eff..1300e91 100644 --- a/manifest_xml.py +++ b/manifest_xml.py
@@ -146,9 +146,8 @@ 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')