From 8440df34d479a003760a0858bd3efe4eb1f00604 Mon Sep 17 00:00:00 2001 From: thewesker Date: Wed, 14 Oct 2020 23:58:00 -0400 Subject: [PATCH] Fixed the indent --- src/oled_monitor/rascsi_oled_monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oled_monitor/rascsi_oled_monitor.py b/src/oled_monitor/rascsi_oled_monitor.py index 2d18b4f..2b767b5 100755 --- a/src/oled_monitor/rascsi_oled_monitor.py +++ b/src/oled_monitor/rascsi_oled_monitor.py @@ -152,7 +152,7 @@ while True: else: output = "No images mounted!" draw.text((x, y_pos), output, font=font, fill=255) - y_pos = y_pos + 8 + y_pos = y_pos + 8 # If there is still room on the screen, we'll display the time. If there's not room it will just be clipped draw.text((x, y_pos), datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S"), font=font, fill=255)