From d62f8f6bccead55186bbf07870d56808b96f593b Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sat, 22 Oct 2011 19:26:57 +0000 Subject: [PATCH] smooth updates: pass a list of MigrationItems to remove, not strings Signed-off-by: Adam D. Barratt --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index b9f0282..2eea78f 100755 --- a/britney.py +++ b/britney.py @@ -2652,7 +2652,7 @@ class Britney: if len(removals) > 0: self.output_write("Removing packages left in testing for smooth updates (%d):\n%s" % \ (len(removals), self.old_libraries_format(removals))) - self.do_all(actions=removals) + self.do_all(actions=[ MigrationItem(x) for x in removals ]) removals = self.old_libraries() else: removals = ()