From 83b6b39fca167e0cc930dbebf394651b2bad8cca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Grali=C5=84ski?= Date: Wed, 12 Sep 2018 13:48:31 +0200 Subject: [PATCH] Fix error message --- src/GEval/Core.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GEval/Core.hs b/src/GEval/Core.hs index d8aa0df..b5fa607 100644 --- a/src/GEval/Core.hs +++ b/src/GEval/Core.hs @@ -283,7 +283,7 @@ instance Show GEvalException where show TooManyLinesInInput = "Too many lines in the input file" show EmptyOutput = "The output file is empty" show (UnexpectedData lineNo message) = "Line " ++ (show lineNo) ++ ": Unexpected data [" ++ message ++ "]" - show UnexpectedMultipleOutputs = "Multiple outputs are not possible in this mode" + show UnexpectedMultipleOutputs = "Multiple outputs are not possible in this mode, use -o option to select an output file" somethingWrongWithFilesMessage :: String -> FilePath -> String somethingWrongWithFilesMessage msg filePath = Prelude.concat