aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-11-16 07:16:14 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2010-11-16 07:16:38 -0800
commit55e991614d2e510cf9917b16e58ea1da0cc279ea (patch)
treecdcf7de7594f14846da0b9af3cf060a6aeb20312 /src
parentd73a531d899600ab9999b798129dc0fa6185ef7f (diff)
downloadpandoc-55e991614d2e510cf9917b16e58ea1da0cc279ea.tar.gz
Removed unneeded format argument in call to readBiblioFile.
Diffstat (limited to 'src')
-rw-r--r--src/pandoc.hs2
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