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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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