1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

fix digitalclock display bug. (#883)

This commit is contained in:
Jon Hadfield
2020-04-29 04:46:37 +01:00
committed by GitHub
parent 93f8172029
commit 0b3a326fe3

View File

@@ -40,7 +40,6 @@ func getHourMinute(hourFormat string) string {
} }
strMintues := intStrConv(time.Now().Minute()) strMintues := intStrConv(time.Now().Minute())
fmt.Println(AMPM)
strMintues = strMintues + AMPM strMintues = strMintues + AMPM
return strHours + getColon() + strMintues return strHours + getColon() + strMintues
} }