From a7a383dca86e4eddbd9b79c0991d315d8db0b144 Mon Sep 17 00:00:00 2001 From: Stefan Harmuth Date: Wed, 30 Nov 2022 19:46:38 +0100 Subject: [PATCH] maybe actually print the remaining seconds ... --- start_day.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 start_day.py diff --git a/start_day.py b/start_day.py old mode 100644 new mode 100755 index a73ec03..e95bc62 --- a/start_day.py +++ b/start_day.py @@ -43,7 +43,7 @@ if start > now: exit() for x in range(time_wait.seconds, -1, -1): - print("Day starts in %02ds.\r") + print("Day starts in %02ds.\r" % x) sleep(1) call([CHARMS[system()], day_file])