From: Christian Heller Date: Sat, 4 Jul 2020 11:22:39 +0000 (+0200) Subject: Remove parentheses from week day names. X-Git-Url: https://plomlompom.com/repos/?p=berlin-corona-table;a=commitdiff_plain;h=2b686eda23627862965e73c1abfd097a2ef0411a Remove parentheses from week day names. --- diff --git a/enhance_table.py b/enhance_table.py index ab6ec46..7fe22b3 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -172,7 +172,7 @@ th { text-align: left; vertical-align: bottom; } print('') print('') weekday = calendar.day_name[datetime.date.fromisoformat(date).weekday()] - print('%s
(%s)' % (date, weekday)) + print('%s
%s' % (date, weekday)) print('') for abbr in ['+', 'Σ', 'Ø', 'i']: print('' %
%s