From acc5c312b65a14a723d66caf4ee93c253711c96c Mon Sep 17 00:00:00 2001 From: aaron-lebo Date: Fri, 21 Feb 2014 23:48:05 -0600 Subject: [PATCH] Update weather.py --- i3pystatus/weather.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i3pystatus/weather.py b/i3pystatus/weather.py index 1b838de..0828c00 100644 --- a/i3pystatus/weather.py +++ b/i3pystatus/weather.py @@ -20,12 +20,12 @@ class Weather(IntervalModule): settings = ( "location_code", - ("units", "Celsius (C) or Fahrenheit (F)"), + ("units", "Celsius (metric) or Fahrenheit (imperial)"), "format", ) required = ("location_code",) - units = "C" + units = "metric" format = "{current_temp}" @require(internet)