fixed a decoding bug
removed the UTF-8 part from icalendar parsing process
This commit is contained in:
parent
4a41b9258c
commit
d127d88abd
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ if display_colours == "bw":
|
||||||
epd = epd7in5.EPD()
|
epd = epd7in5.EPD()
|
||||||
from calibration_bw import calibration
|
from calibration_bw import calibration
|
||||||
|
|
||||||
c = Calendar(urlopen(url).read().decode('UTF-8'))
|
c = Calendar(urlopen(url).read().decode())
|
||||||
e = Event()
|
e = Event()
|
||||||
EPD_WIDTH = 640
|
EPD_WIDTH = 640
|
||||||
EPD_HEIGHT = 384
|
EPD_HEIGHT = 384
|
||||||
|
|
Loading…
Reference in a new issue