diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pandoc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs index 0cca48b6f..5fcec5005 100644 --- a/src/pandoc.hs +++ b/src/pandoc.hs @@ -521,7 +521,7 @@ options = , Option "" ["bibliography"] (ReqArg (\arg opt -> do - refs <- catch (readBiblioFile arg "") $ \e -> do + refs <- catch (readBiblioFile arg) $ \e -> do UTF8.hPutStrLn stderr $ "Error reading bibliography `" ++ arg ++ "'" UTF8.hPutStrLn stderr $ show e |