From 6dcdca3fea47f10d9a53188f15de085f36342699 Mon Sep 17 00:00:00 2001 From: Brendan Howell Date: Fri, 15 Oct 2021 02:46:34 +0200 Subject: [PATCH] some fixes --- screenless/bureau/publications/publications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenless/bureau/publications/publications.py b/screenless/bureau/publications/publications.py index 31256e0..4730d9f 100644 --- a/screenless/bureau/publications/publications.py +++ b/screenless/bureau/publications/publications.py @@ -155,7 +155,7 @@ class Publications(Bureau): day_count += 1 prn.textln(" - " + period["period"]) prn.image(period["png"]) - prn.textln(period["mintemp"] + " - " + period["maxtemp"] + "C") + prn.textln(str(period["mintemp"]) + " - " + str(period["maxtemp"]) + "°C") if day_count > 4: break prn.ln()