From fede7fabe208a6e888913cb8ec97d0f9273e83e0 Mon Sep 17 00:00:00 2001 From: mlncn Date: Sun, 2 May 2021 16:58:52 -0400 Subject: [PATCH] Concatenate the same way and probably avoid extra space --- pomodoroprompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomodoroprompt.py b/pomodoroprompt.py index a42d734..7d2cead 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -109,7 +109,7 @@ def main(): end = start + timedelta(minutes=WORK_MIN) log_step('Start with plan: ' + whatnext, start) try: - print('Working on: ', whatnext) + print('Working on: ' + whatnext) countdown_to(end) if not QUIET: playsound('res/timesup.aac')