From 5ece867536877574b33064933504740484e08797 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Fri, 3 Jul 2020 20:59:04 +0200 Subject: [PATCH] Use long form district names in HTML variant. --- enhance_table.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/enhance_table.py b/enhance_table.py index 0482bdf..acbebc6 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -136,7 +136,9 @@ if output_type == 'html': print('') print('date') for district in sorted_districts: - print('%s' % district) + long_form = translate[district] + print('%s' % long_form) print('') sorted_dates.reverse() for date in sorted_dates: -- 2.30.2