From: Philipp Spitzer Date: Tue, 5 Feb 2019 19:07:33 +0000 (+0100) Subject: Fix typo. X-Git-Url: https://git.toastfreeware.priv.at/chrisu/seepark.git/commitdiff_plain/4bfc7ad02abc6bb60d507f60fa783e84e03c8352 Fix typo. --- 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)