diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-11 23:16:53 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-11 23:16:53 +0100 |
commit | cace40accb14067aa168656ac79c779a7c48f701 (patch) | |
tree | fc42ae979b8f9e739e3c4b8aa1a19d4b6dc9b376 /Plugins/Monitors/Common.hs | |
parent | 60077e86f79c387ee82c1863a5eed403df816012 (diff) | |
download | xmobar-cace40accb14067aa168656ac79c779a7c48f701.tar.gz xmobar-cace40accb14067aa168656ac79c779a7c48f701.tar.bz2 |
Weather monitor: skip not retrieved fields
Instead of spamming the bar with a long "blah blah: not found!" message.
Diffstat (limited to 'Plugins/Monitors/Common.hs')
-rw-r--r-- | Plugins/Monitors/Common.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugins/Monitors/Common.hs b/Plugins/Monitors/Common.hs index 90b2d28..6761e76 100644 --- a/Plugins/Monitors/Common.hs +++ b/Plugins/Monitors/Common.hs @@ -248,7 +248,7 @@ getAfterString :: String -> Parser String getAfterString s = do { try $ manyTill skipRestOfLine $ string s ; manyTill anyChar newline - } <|> return ("<" ++ s ++ " not found!>") + } <|> return "" skipTillString :: String -> Parser String skipTillString s = |