This commit is contained in:
Joey Hess 2013-12-07 11:18:02 -04:00
parent dd0b4bc848
commit fc40432cff

View file

@ -114,7 +114,7 @@ getOutput :: String -> [String] -> Maybe [(String, String)] -> IO (String, Bool)
getOutput cmd params env = do
putStrLn $ unwords [cmd, show params]
out@(s, ok) <- processTranscript' cmd params env Nothing
putStrLn $ unwords [cmd, "finished", show ok, "output size:", length s]
putStrLn $ unwords [cmd, "finished", show ok, "output size:", show (length s)]
return out
runParser' :: Parser a -> String -> String -> a