Don't create new bugzilla components for modules, yet.

This commit is contained in:
Ralph Bean 2017-12-15 21:34:11 +00:00
parent 3199c15328
commit d75b0eba55

View file

@ -711,6 +711,12 @@ if __name__ == '__main__':
watchers=pagure_namespace_to_cc[namespace][name],
))
# Filter out any modules, since we don't have rights to create new
# components in the "Fedora Modules" project yet
pagure_projects = [
p for p in pagure_projects if p['namespace'] != 'modules'
]
branches_url = PDCURL.split('rest_api')[0] + 'extras/active_branches.json'
if DEBUG:
print("Querying %r for EOL information." % branches_url)