Fix 'print done task' function

This commit is contained in:
Brian Buller 2019-04-22 10:29:50 -05:00
parent 5174472bf0
commit b0d4cfe017
1 changed files with 1 additions and 1 deletions

View File

@ -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() {