From 04f417ef5c1e9fe93671ec951f92b098ead7e815 Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Fri, 13 Nov 2020 17:00:23 -0500 Subject: [PATCH] fix pulls --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 9043f97..921d61b 100644 --- a/main.py +++ b/main.py @@ -26,7 +26,7 @@ try: draw.pieslice((55, 60, 95, 100), 270, 360, fill = 0) draw.polygon([(110,0),(110,50),(150,25)],outline = 0) draw.polygon([(190,0),(190,50),(150,25)],fill = 0) - font15 = ImageFont.truetype('/usr/share/fonts/truetype/wqy/wqy-microhei.ttc', 15) + font15 = ImageFont.truetype('wqy-microhei.ttc', 15) draw.text((110, 60), 'e-Paper demo', font = font15, fill = 0) draw.text((110, 80), 'Hello world', font = font15, fill = 0) epd.display(epd.getbuffer(image))