Merge pull request #488 from AlexanderYastrebov/align-current
Aligns current weather conditions with forecast
This commit is contained in:
commit
b475d5521f
1 changed files with 3 additions and 3 deletions
|
|
@ -1169,11 +1169,11 @@ func main() {
|
|||
out := formatCond(make([]string, 5), r.Data.Cur[0], true)
|
||||
for _, val := range out {
|
||||
if config.RightToLeft {
|
||||
space := strings.Repeat(" ", 93)
|
||||
fmt.Fprintln(stdout, space, val)
|
||||
fmt.Fprint(stdout, strings.Repeat(" ", 94))
|
||||
} else {
|
||||
fmt.Fprintln(stdout, val)
|
||||
fmt.Fprint(stdout, " ")
|
||||
}
|
||||
fmt.Fprintln(stdout, val)
|
||||
}
|
||||
|
||||
if config.Numdays == 0 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue