Concatenate the same way and probably avoid extra space
This commit is contained in:
parent
321c0832dc
commit
fede7fabe2
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ def main():
|
||||||
end = start + timedelta(minutes=WORK_MIN)
|
end = start + timedelta(minutes=WORK_MIN)
|
||||||
log_step('Start with plan: ' + whatnext, start)
|
log_step('Start with plan: ' + whatnext, start)
|
||||||
try:
|
try:
|
||||||
print('Working on: ', whatnext)
|
print('Working on: ' + whatnext)
|
||||||
countdown_to(end)
|
countdown_to(end)
|
||||||
if not QUIET:
|
if not QUIET:
|
||||||
playsound('res/timesup.aac')
|
playsound('res/timesup.aac')
|
||||||
|
|
Loading…
Reference in a new issue