From 5ec47a0e7282c88f39752fd52ae5aa6ccff2b3b6 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Mon, 24 Dec 2012 20:32:23 +0000 Subject: [PATCH] Remove two unused variables from iter_packages() The code using the variables was refactored in 694d614b. As a result they were still set in iter_packages() but never subsequently used. Signed-off-by: Adam D. Barratt --- britney.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/britney.py b/britney.py index 76b8c89..ea98a60 100755 --- a/britney.py +++ b/britney.py @@ -2135,8 +2135,6 @@ class Britney(object): nuninst[arch] = set([x for x in nuninst_comp[arch] if x in binaries[arch][0]]) nuninst[arch + "+all"] = set([x for x in nuninst_comp[arch + "+all"] if x in binaries[arch][0]]) - broken = nuninst[arch + "+all"] - to_check = [] check_packages(arch, affected, skip_archall, nuninst, pkg)