From 55e991614d2e510cf9917b16e58ea1da0cc279ea Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Tue, 16 Nov 2010 07:16:14 -0800
Subject: [PATCH] Removed unneeded format argument in call to readBiblioFile.

---
 src/pandoc.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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