diff --git a/distgit_bugzilla_sync/default-config-files/configuration.toml b/distgit_bugzilla_sync/default-config-files/configuration.toml index 709a443..fcfbd97 100644 --- a/distgit_bugzilla_sync/default-config-files/configuration.toml +++ b/distgit_bugzilla_sync/default-config-files/configuration.toml @@ -12,11 +12,10 @@ ignorable_accounts = ["packagerbot", "zuul"] [products] [products.Fedora] namespace = "rpms" - versions = ["rawhide", "31", "30", "29"] - [products."Fedora Container"] + versions = ["rawhide", "33", "32", "31"] [products."Fedora Container Images"] namespace = "container" - versions = ["rawhide", "29"] + versions = ["rawhide", "33", "32", "31"] [products."Fedora Modules"] namespace = "modules" versions = [] diff --git a/distgit_bugzilla_sync/script.py b/distgit_bugzilla_sync/script.py index 00d3d26..258144a 100644 --- a/distgit_bugzilla_sync/script.py +++ b/distgit_bugzilla_sync/script.py @@ -1164,7 +1164,7 @@ class DistgitBugzillaSync: # Do not send the email in dryrun or when the error only relates to # configuration (which will always happen for flatpaks and tests) - if not self.env["dryrun"] and list(self.errors.keys()) != ["configuration"]: + if not self.env["dryrun"] and tuple(self.errors) != ("configuration",): self.send_email( self.env["email"]["from"], self.env["email"]["notify_admins"],