summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--project.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/project.py b/project.py
index afab1b7c..4f0345f8 100644
--- a/project.py
+++ b/project.py
@@ -666,6 +666,8 @@ class Project(object):
666 manifest_groups: "-group1,group2" 666 manifest_groups: "-group1,group2"
667 the project will be matched. 667 the project will be matched.
668 """ 668 """
669 if self.groups is None:
670 return True
669 matched = False 671 matched = False
670 for group in manifest_groups: 672 for group in manifest_groups:
671 if group.startswith('-') and group[1:] in self.groups: 673 if group.startswith('-') and group[1:] in self.groups: