From b63d04b6a0acd4ef1bc9702ea0df3e6cc99970e4 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Dec 06 2023 00:42:31 +0000 Subject: Fix auto-discovering EOL date for close template When I added the auto-discover EOL close date feature, I missed using the auto-discovered date in the EOL close template. So all the F37 EOL close messages say: "Fedora Linux 37 entered end-of-life (EOL) status on None." ...d'oh. This fixes it. Signed-off-by: Adam Williamson --- diff --git a/closebugs/fedora_bz.py b/closebugs/fedora_bz.py index aff15e8..8650409 100755 --- a/closebugs/fedora_bz.py +++ b/closebugs/fedora_bz.py @@ -204,7 +204,7 @@ def handle_eol(): comment = jinja2.Environment().from_string(EOL_CLOSE_TEMPLATE).render( VERSION=options.release, PRODUCT=options.product, - DATE=options.date + DATE=date ) update = bz.build_update( comment=comment,