summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2007-06-26 20:45:42 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2007-06-26 20:45:42 +0200
commit507fd64f791132958e1dbd87f4f7eaaa030627f1 (patch)
tree9de3aa479d021855ea5e0c00ffdeafe96f9dc822
parent553acd94b2ad73b3eb0fa4c1120e4e1f0dc47da3 (diff)
downloadxmobar-507fd64f791132958e1dbd87f4f7eaaa030627f1.tar.gz
xmobar-507fd64f791132958e1dbd87f4f7eaaa030627f1.tar.bz2
removed debug output
darcs-hash:20070626184542-d6583-a09c3bf96e46082e861be9cb8c119ad15cbfbda2.gz
-rw-r--r--Monitors/Weather.hs2
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 ++ ")"