From 4bfc7ad02abc6bb60d507f60fa783e84e03c8352 Mon Sep 17 00:00:00 2001 From: Philipp Spitzer Date: Tue, 5 Feb 2019 20:07:33 +0100 Subject: [PATCH] Fix typo. --- web/seepark_web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/seepark_web.py b/web/seepark_web.py index 57509e4..a155ffc 100644 --- a/web/seepark_web.py +++ b/web/seepark_web.py @@ -334,6 +334,7 @@ def report(year, month): # table plt.figure(figsize=a4) columns = ['Datum'] + plt.ylabel('Temperatur in °C') for t in report_times: columns.append('Wassertemperatur {} Uhr'.format(t.hour)) cells = [] @@ -362,7 +363,6 @@ def report(year, month): plt.plot(x, y) plt.xticks(days_datetime, days_str, rotation='vertical') plt.xlabel('Tag') - plt.ylabel('Temparatur in °C') plt.axis(xmin=begin, xmax=end) plt.grid() plt.title(title) -- 2.47.3