Merge pull request #488 from AlexanderYastrebov/align-current

Aligns current weather conditions with forecast
This commit is contained in:
Igor Chubin 2020-06-28 21:08:59 +02:00 committed by GitHub
commit b475d5521f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1169,11 +1169,11 @@ func main() {
out := formatCond(make([]string, 5), r.Data.Cur[0], true) out := formatCond(make([]string, 5), r.Data.Cur[0], true)
for _, val := range out { for _, val := range out {
if config.RightToLeft { if config.RightToLeft {
space := strings.Repeat(" ", 93) fmt.Fprint(stdout, strings.Repeat(" ", 94))
fmt.Fprintln(stdout, space, val)
} else { } else {
fmt.Fprintln(stdout, val) fmt.Fprint(stdout, " ")
} }
fmt.Fprintln(stdout, val)
} }
if config.Numdays == 0 { if config.Numdays == 0 {