Removed unneeded format argument in call to readBiblioFile.

This commit is contained in:
John MacFarlane 2010-11-16 07:16:14 -08:00
parent d73a531d89
commit 55e991614d

View file

@ -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