From e5d1fee1d5a226b7f2c6e59198853d44cda95fa2 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Thu, 12 Apr 2018 10:47:33 -0600 Subject: [PATCH] CLI good --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index e6d0a6e..59ea5ac 100644 --- a/main.go +++ b/main.go @@ -140,10 +140,10 @@ func printTime(pRemains *time.Duration, target time.Duration, delim *rune, rever } at := fmt.Sprintf("%2d%c%02d%c%02d", hrs, byte(*delim), min, byte(*delim), seconds) rem := fmt.Sprintf("%2d%c%02d%c%02d", rHrs, tdelim, rMin, tdelim, rSec) - fmt.Printf("\rRemaining: %s\tAt: %s\t\t", rem, at) + fmt.Printf("\rRemaining: %s \tAt: %s ", rem, at) } else { rem := fmt.Sprintf("%2d%c%02d%c%02d", hrs, byte(*delim), min, byte(*delim), seconds) - fmt.Printf("\rRemaining: %s\t\t", rem) + fmt.Printf("\rRemaining: %s ", rem) if remains < 0 { go alertTime(pRemains, target, reverse) }