diff options
| author | 2019-11-26 18:42:33 +0000 | |
|---|---|---|
| committer | 2019-11-26 18:42:33 +0000 | |
| commit | 7a5eb765c40408f2d2cb2d3eefd7c76582b7c9ed (patch) | |
| tree | 671a9539cd027268adf64da5c6f6bbe95c0a0729 /modules/weather.py | |
| parent | check hostmask on WHO too (diff) | |
| signature | ||
use " | " as location & temp separator
Diffstat (limited to 'modules/weather.py')
| -rw-r--r-- | modules/weather.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/weather.py b/modules/weather.py index 76ddf3d4..1677f990 100644 --- a/modules/weather.py +++ b/modules/weather.py @@ -81,7 +81,7 @@ class Module(ModuleManager.BaseModule): location_str = "(%s) %s" % (nickname, location_str) event["stdout"].write( - "%s - %s/%s | %s | Humidity: %s | Wind: %s/%s" % ( + "%s | %s/%s | %s | Humidity: %s | Wind: %s/%s" % ( location_str, celsius, fahrenheit, description, humidity, wind_speed_k, wind_speed_m)) else: |
