From 758b0718bced5404433485c18e8eaecbdf54acb6 Mon Sep 17 00:00:00 2001 From: Fabio Tranchitella Date: Fri, 18 Aug 2006 15:18:11 +0000 Subject: [PATCH] Removed a call to keys method, it is useless. --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index bc17e65..2e25c22 100644 --- a/britney.py +++ b/britney.py @@ -1698,7 +1698,7 @@ class Britney: del conflicts[c] def remove_package(pkg, system, conflicts): - for k in system.keys(): + for k in system: if pkg in system[k][1]: system[k][1].remove(pkg) unregister_conflicts(pkg, conflicts)