diff options
| -rw-r--r-- | NEWS | 2 | ||||
| -rw-r--r-- | Plugins/Monitors/Common.hs | 2 | 
2 files changed, 3 insertions, 1 deletions
| @@ -35,6 +35,8 @@ _New features_      Rockai).    - Mail plugin expands paths starting with "~/" (Ben Boeckel). Ditto      MBox. +  - Weather monitor now skips not retrieved fields, instead of +    displaying a long error message.    - New compilation flag, `all_extensions`.    - Documentation and website updates. 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 = | 
