Fix update_bug not closing proposed/* changes
We didn't update update_bug.py when we switched from milestone-proposed
to proposed/* branches, so it currently doesn't update bugs correctly
when a backport is merged to proposed/*. This fixes it.
Change-Id: Ifb8f5e71475d6b0be5e3e958c021d013a34bc0a1
diff --git a/jeepyb/cmd/update_bug.py b/jeepyb/cmd/update_bug.py
index d0c8cd0..f886ac2 100644
--- a/jeepyb/cmd/update_bug.py
+++ b/jeepyb/cmd/update_bug.py
@@ -221,7 +221,7 @@
if (bugtask.status != u'Fix Released' and
task.needs_change('set_fix_committed')):
set_fix_committed(bugtask)
- elif args.branch == 'milestone-proposed':
+ elif args.branch.startswith('proposed/'):
release_fixcommitted(bugtask)
elif args.branch.startswith('stable/'):
series = args.branch[7:]