From 99c0ab9705789cb73c028764185cf2af10534a18 Mon Sep 17 00:00:00 2001 From: Borzutzki Robert Date: Mon, 25 Nov 2024 23:12:47 +0100 Subject: [PATCH] change --- examples/date-diff.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/date-diff.py b/examples/date-diff.py index c7002cf..a6d63f5 100644 --- a/examples/date-diff.py +++ b/examples/date-diff.py @@ -69,7 +69,8 @@ def init_monitor(): drawblack.text((4, 28), 'Oder ' + str(round(duration.days / 30,2)) + " Monate", font = font14, fill = 0) drawblack.text((4, 43), 'Oder ' + str(duration.days * 24) + " Stunden", font = font14, fill = 0) drawblack.text((4, 58), 'Oder ' + str(round(duration.days / 365,2)) + " Jahre", font = font14, fill = 0) - drawblack.text((4, 73), "Bis du am " + str(ruhestand.strftime("%A %B %d.%m.%Y")), font = font14, fill = 0) + drawblack.text((4, 73), "Bis du am: " + str(ruhestand.strftime("%A %B %d.%m.%Y")), font = font14, fill = 0) + drawblack.text((4, 88), str(ruhestand.strftime("%A %B %d.%m.%Y")) + " in den Ruhestand gehen!", font = font14, fill = 0) epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRYimage))