From f9adb85a13c808aec50746d8db37a642c9a266ed Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 23 Nov 2014 13:39:27 -0500 Subject: Clean up some pylint messages --- coverage/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/parser.py') diff --git a/coverage/parser.py b/coverage/parser.py index 8b9cc1e..9041e34 100644 --- a/coverage/parser.py +++ b/coverage/parser.py @@ -216,7 +216,7 @@ class PythonParser(CodeParser): try: self._raw_parse() except (tokenize.TokenError, IndentationError) as tokerr: - msg, lineno = tokerr.args + msg, lineno = tokerr.args # pylint: disable=unpacking-non-sequence raise NotPython( "Couldn't parse '%s' as Python source: '%s' at %s" % (self.filename, msg, lineno) -- cgit v1.2.1