diff options
author | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2007-06-26 20:45:42 +0200 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2007-06-26 20:45:42 +0200 |
commit | 507fd64f791132958e1dbd87f4f7eaaa030627f1 (patch) | |
tree | 9de3aa479d021855ea5e0c00ffdeafe96f9dc822 /Monitors | |
parent | 553acd94b2ad73b3eb0fa4c1120e4e1f0dc47da3 (diff) | |
download | xmobar-507fd64f791132958e1dbd87f4f7eaaa030627f1.tar.gz xmobar-507fd64f791132958e1dbd87f4f7eaaa030627f1.tar.bz2 |
removed debug output
darcs-hash:20070626184542-d6583-a09c3bf96e46082e861be9cb8c119ad15cbfbda2.gz
Diffstat (limited to 'Monitors')
-rw-r--r-- | Monitors/Weather.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Monitors/Weather.hs b/Monitors/Weather.hs index 659c4ea..994227e 100644 --- a/Monitors/Weather.hs +++ b/Monitors/Weather.hs @@ -36,7 +36,7 @@ data WeatherInfo = Fail String } instance Show WeatherInfo where - show (Fail x) = "N/A " ++ x + show (Fail _) = "N/A" show (WI st t temp rh) = st ++ ": " ++ (formatWeather temp) ++ "C, rh " ++ formatWeather rh ++ "% (" ++ t ++ ")" |