From 5d5280cab224666b9a9c03b92adeab413e75222a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Mon, 6 Jul 2020 09:27:34 -0400 Subject: [PATCH] Tweak outputted terminology --- pomodoroprompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomodoroprompt.py b/pomodoroprompt.py index 8f39f65..3a207d5 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -79,7 +79,7 @@ def main(): end = start + timedelta(minutes=WORK_MIN) log_step('Start with plan: ' + whatnext, start) try: - print('Task -', whatnext) + print('Working on: ', whatnext) while datetime.now(pytz.utc) <= end: to_go = end-datetime.now(pytz.utc) print('\r', str(to_go).split('.')[0], sep='', end='')