From b0d4cfe017e4e10106e02583737a0961f0340725 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Mon, 22 Apr 2019 10:29:50 -0500 Subject: [PATCH] Fix 'print done task' function --- app_state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app_state.go b/app_state.go index a4405f9..510fc81 100644 --- a/app_state.go +++ b/app_state.go @@ -75,7 +75,7 @@ func (a *AppState) getTimerString(timer timertxt.Timer) string { } func (a *AppState) getDoneTimerString(timer timertxt.Timer) string { - return fmt.Sprintf("0. %s", timer.Id, timer.String()) + return fmt.Sprintf("--. %s", timer.String()) } func (a *AppState) doVersionCheck() {