From 19c61e45031f7de3903b109edc250ded90585953 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Wed, 11 Apr 2012 21:33:03 +0000 Subject: [PATCH] Fix typo in variable name 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 345aad9..62cf7c6 100755 --- a/britney.py +++ b/britney.py @@ -1852,7 +1852,7 @@ class Britney(object): # migrated earlier in the hint. walk the list to make # sure that at least one of the entries is still # valid - rdeps = [x for x in rdeps if x not in [y.split("/")[0] for y in bins]] + rrdeps = [x for x in rdeps if x not in [y.split("/")[0] for y in bins]] if len(rrdeps) > 0: for dep in rrdeps: if dep in binaries[parch][0]: