diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index be185477..a6364a77 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -21,7 +21,8 @@ import urlparse | |||
21 | import xml.dom.minidom | 21 | import xml.dom.minidom |
22 | 22 | ||
23 | from git_config import GitConfig | 23 | from git_config import GitConfig |
24 | from project import RemoteSpec, Project, MetaProject, R_HEADS, HEAD | 24 | from git_refs import R_HEADS, HEAD |
25 | from project import RemoteSpec, Project, MetaProject | ||
25 | from error import ManifestParseError | 26 | from error import ManifestParseError |
26 | 27 | ||
27 | MANIFEST_FILE_NAME = 'manifest.xml' | 28 | MANIFEST_FILE_NAME = 'manifest.xml' |
@@ -584,7 +585,7 @@ class XmlManifest(object): | |||
584 | groups = node.getAttribute('groups') | 585 | groups = node.getAttribute('groups') |
585 | groups = [x for x in re.split('[,\s]+', groups) if x] | 586 | groups = [x for x in re.split('[,\s]+', groups) if x] |
586 | 587 | ||
587 | default_groups = ['default', 'name:%s' % name, 'path:%s' % path] | 588 | default_groups = ['all', 'name:%s' % name, 'path:%s' % path] |
588 | groups.extend(set(default_groups).difference(groups)) | 589 | groups.extend(set(default_groups).difference(groups)) |
589 | 590 | ||
590 | if self.IsMirror: | 591 | if self.IsMirror: |