summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
Diffstat (limited to 'manifest_xml.py')
-rw-r--r--manifest_xml.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index ea6a7e52..26cc14f6 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -211,7 +211,8 @@ class XmlManifest(object):
211 ce.setAttribute('dest', c.dest) 211 ce.setAttribute('dest', c.dest)
212 e.appendChild(ce) 212 e.appendChild(ce)
213 213
214 egroups = [g for g in p.groups if g != 'default'] 214 default_groups = ['default', 'name:%s' % p.name, 'path:%s' % p.relpath]
215 egroups = [g for g in p.groups if g not in default_groups]
215 if egroups: 216 if egroups:
216 e.setAttribute('groups', ','.join(egroups)) 217 e.setAttribute('groups', ','.join(egroups))
217 218