diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-11-16 07:16:14 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-11-16 07:16:38 -0800 |
commit | 55e991614d2e510cf9917b16e58ea1da0cc279ea (patch) | |
tree | cdcf7de7594f14846da0b9af3cf060a6aeb20312 /src | |
parent | d73a531d899600ab9999b798129dc0fa6185ef7f (diff) | |
download | pandoc-55e991614d2e510cf9917b16e58ea1da0cc279ea.tar.gz |
Removed unneeded format argument in call to readBiblioFile.
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 |