From fadcea499578693a4c71ae7e4402e5342014fe0b Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Tue, 12 Jul 2016 11:36:59 +0200 Subject: [PATCH] Python 3.2 workaround: Drop usage of clear() The clear() collection method is not yet available in Python 3.2, but as long as snakefruit still runs Ubuntu 12.04 we need to get along without it. --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index d4ccbf6..0e18ec8 100755 --- a/britney.py +++ b/britney.py @@ -2308,7 +2308,7 @@ class Britney(object): self.output_write(" most: (%d) .. %s\n" % (len(selected), " ".join(x.uvname for x in selected[-20:]))) nuninst_last_accepted = nuninst_after rescheduled_packages.extend(maybe_rescheduled_packages) - maybe_rescheduled_packages.clear() + maybe_rescheduled_packages = [] else: broken = sorted(b for b in nuninst_after[failed_arch] if b not in nuninst_last_accepted[failed_arch])