diff --git a/jeepyb/cmd/manage_projects.py b/jeepyb/cmd/manage_projects.py index 53b00f8..caa9388 100644 --- a/jeepyb/cmd/manage_projects.py +++ b/jeepyb/cmd/manage_projects.py @@ -474,7 +474,7 @@ def main(): try: # Collect processed errors,if any process_errors = [] - for section in registry.configs_list: + for section in registry.all_configs_list: project = section['project'] if args.projects and project not in args.projects: continue diff --git a/jeepyb/utils.py b/jeepyb/utils.py index 9d50479..8e6ab34 100644 --- a/jeepyb/utils.py +++ b/jeepyb/utils.py @@ -238,3 +238,7 @@ class ProjectsRegistry(object): @property def configs_list(self): return [entry for entry in self._configs_list if not is_retired(entry)] + + @property + def all_configs_list(self): + return self._configs_list