From b80b98afa99c2d7c406673f3318538828b6a4819 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 4 Jul 2020 02:06:12 +0200
Subject: [PATCH] Fix broken txt version.

---
 enhance_table.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/enhance_table.py b/enhance_table.py
index 4ce7792..3e36e0e 100755
--- a/enhance_table.py
+++ b/enhance_table.py
@@ -253,13 +253,13 @@ HTML view: https://plomlompom.com/berlin_corona.html
         weekly_sums = []
         weekly_avgs = []
         weekly_incs = []
-        for district in sorted_districts[:-1]:
+        for district in sorted_districts[1:]:
             weekly_sums += [db[district][week_start_date]['week_sum']]
             weekly_avgs += [db[district][week_start_date]['week_average']]
             weekly_incs += [db[district][week_start_date]['week_incidence']]
         print()
         print('district stats for week from %s to %s:' % (date, week_start_date))
-        print(' '*7, '    '.join(sorted_districts[:-1]))
+        print(' '*7, '    '.join(sorted_districts[1:]))
         print('wsum', ' '.join(['%5.1f' % wsum for wsum in weekly_sums]))
         print('wavg', ' '.join(['%5.1f' % wavg for wavg in weekly_avgs]))
         print('winc', ' '.join(['%5.1f' % winc for winc in weekly_incs]))
-- 
2.30.2