summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weather.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weather.go b/weather.go
index 72ff915..768ab93 100644
--- a/weather.go
+++ b/weather.go
@@ -34,7 +34,7 @@ func (c Current) String() string {
if c.Message != "" {
return c.Message
}
- s := fmt.Sprintf("%v: ", c.Name)
+ s := fmt.Sprintf("%v, %v: ", c.Name, c.Sys.Country)
for _, w := range c.Weather {
s += fmt.Sprintf("%v, ", w)
}