Merge pull request #290 from shreyasminocha/master

Weather formatting nit
This commit is contained in:
jess 2020-11-26 21:30:39 +00:00 committed by GitHub
commit 2d39421aeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: