From a7c4d15ab411bd05e3b8f4c83fada5c4ce45a0af Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 9 Sep 2015 22:23:16 -0400 Subject: [PATCH] Close as ERRATA See https://fedoraproject.org/wiki/BugZappers/BugStatusWorkFlow Fixes #427. --- bodhi/bugs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bodhi/bugs.py b/bodhi/bugs.py index 70aed6a7c3..b6d1f14de8 100644 --- a/bodhi/bugs.py +++ b/bodhi/bugs.py @@ -114,7 +114,7 @@ def close(self, bug_id, versions): # - space-separated if there's more than one. args['fixedin'] = " ".join(fixedin) - bug.close('NEXTRELEASE', **args) + bug.close('ERRATA', **args) except xmlrpclib.Fault: log.exception("Unable to close bug #%d" % bug_id)