From c340a46e7abb991e69a3511eeda1873bf1250ca6 Mon Sep 17 00:00:00 2001 From: Francis Ginther Date: Mon, 26 Jan 2015 15:09:50 -0600 Subject: [PATCH] Correct copy-n-paste of 'e.' for 'excuse.'. --- britney.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/britney.py b/britney.py index ca00745..c20cf12 100755 --- a/britney.py +++ b/britney.py @@ -1899,10 +1899,10 @@ class Britney(object): continue # Also skip removals, binary-only candidates, proposed-updates # and unknown versions. - if (e.name.startswith("-") or - "/" in e.name or - "_" in e.name or - e.ver[1] == "-"): + if (excuse.name.startswith("-") or + "/" in excuse.name or + "_" in excuse.name or + excuse.ver[1] == "-"): continue statuses = set() # Update valid excuses from the boottest context. @@ -1921,7 +1921,7 @@ class Britney(object): x for x in hints if same_source(excuse.ver[1], x.version)] if forces: - e.addhtml( + excuse.addhtml( "Should wait for %s %s boottest, but forced by " "%s" % (binary_name, excuse.ver[1], forces[0].user))