diff options
-rw-r--r-- | pandoc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,5 +35,5 @@ import Text.Pandoc.Error (handleError) main :: IO () main = E.catch (parseOptions options defaultOpts >>= convertWithOpts) - (\e -> handleError (Left e)) + (handleError . Left) |