From 24674215cd9cdd10bb3759fe02227b81b8367ae7 Mon Sep 17 00:00:00 2001 From: Fabio Tranchitella Date: Tue, 25 Jul 2006 20:54:10 +0000 Subject: [PATCH] iter_packages eat the list, so we need to pass a copy. --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 86f9755..6af6836 100644 --- a/britney.py +++ b/britney.py @@ -1574,7 +1574,7 @@ class Britney: self.selected = [] self.nuninst_orig = nuninst_start - (nuninst_end, extra) = self.iter_packages(self.upgrade_me, output) + (nuninst_end, extra) = self.iter_packages(self.upgrade_me[:], output) if nuninst_end: output.write("final: %s\n" % ",".join(self.selected))