From d127d88abdd3215e6c7261ae91705578a14d3c31 Mon Sep 17 00:00:00 2001 From: Ace Date: Tue, 25 Dec 2018 00:18:02 +0100 Subject: [PATCH] fixed a decoding bug removed the UTF-8 part from icalendar parsing process --- Calendar/stable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Calendar/stable.py b/Calendar/stable.py index 4d4c701..b48d910 100755 --- a/Calendar/stable.py +++ b/Calendar/stable.py @@ -35,7 +35,7 @@ if display_colours == "bw": epd = epd7in5.EPD() from calibration_bw import calibration -c = Calendar(urlopen(url).read().decode('UTF-8')) +c = Calendar(urlopen(url).read().decode()) e = Event() EPD_WIDTH = 640 EPD_HEIGHT = 384