diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index dd163bed..cdee87a6 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -584,7 +584,7 @@ class XmlManifest(object): | |||
584 | groups = '' | 584 | groups = '' |
585 | if node.hasAttribute('groups'): | 585 | if node.hasAttribute('groups'): |
586 | groups = node.getAttribute('groups') | 586 | groups = node.getAttribute('groups') |
587 | groups = [x for x in re.split('[,\s]+', groups) if x] | 587 | groups = [x for x in re.split(r'[,\s]+', groups) if x] |
588 | 588 | ||
589 | default_groups = ['all', 'name:%s' % name, 'path:%s' % path] | 589 | default_groups = ['all', 'name:%s' % name, 'path:%s' % path] |
590 | groups.extend(set(default_groups).difference(groups)) | 590 | groups.extend(set(default_groups).difference(groups)) |