From f6120e5ec393495f56dc542aeca2af0807f4ecea Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 19 Mar 2017 18:01:35 +0000 Subject: [PATCH] Use the correct required age in html excuses Signed-off-by: Niels Thykier --- britney2/policies/policy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/britney2/policies/policy.py b/britney2/policies/policy.py index 6e2c6e1..8f108e3 100644 --- a/britney2/policies/policy.py +++ b/britney2/policies/policy.py @@ -316,6 +316,7 @@ class AgePolicy(BasePolicy): if new_req: excuse.addhtml("Overriding age needed from %d days to %d by %s" % ( age_min_req, new_req, who)) + age_min_req = new_req else: excuse.addhtml("Too young, but urgency pushed by %s" % who) excuse.setdaysold(age_info['current-age'], age_min_req)