From 4f8d2979aa810694e20c724cfbc96401ac73b7d7 Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Fri, 13 Mar 2015 03:28:51 +0100 Subject: [PATCH] Fix typo in EParseFunctionMismatch. --- lslopt/lslparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lslopt/lslparse.py b/lslopt/lslparse.py index efebc67..b467101 100644 --- a/lslopt/lslparse.py +++ b/lslopt/lslparse.py @@ -112,7 +112,7 @@ class EParseInvalidField(EParse): class EParseFunctionMismatch(EParse): def __init__(self, parser): super(EParseFunctionMismatch, self).__init__(parser, - u"Function type mismatches type or number of arguments") + u"Function call mismatches type or number of arguments") class EParseDeclarationScope(EParse): def __init__(self, parser):