home · contact · privacy
Replace "not enough data" string for space reasons.
authorChristian Heller <c.heller@plomlompom.de>
Fri, 3 Jul 2020 23:17:35 +0000 (01:17 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 3 Jul 2020 23:17:35 +0000 (01:17 +0200)
enhance_table.py

index c670739eb69c53f2ef9ce2b7e26a9300e9138424..c2ea18d658abfa5e764d7f1c59d38e2448e7609c 100755 (executable)
@@ -177,7 +177,7 @@ if output_type == 'html':
         print('</table></td>')
         for district in sorted_districts:
             district_data = db[district][date]
-            week_sum = week_avg = week_inc = '(not enough data)'
+            week_sum = week_avg = week_inc = '?'
             new_infections = district_data['new_infections']
             if 'week_sum' in district_data:
                 week_sum = '%s' % district_data['week_sum']