From 67749e288dbb41ac63ab257f1be54856ecf279db Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 1 Feb 2011 22:46:41 -0500 Subject: Pylint 0.23.0 'deprecated' disable-msg. --- coverage/phystokens.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/phystokens.py') diff --git a/coverage/phystokens.py b/coverage/phystokens.py index 60b87932..fc4f2c90 100644 --- a/coverage/phystokens.py +++ b/coverage/phystokens.py @@ -1,7 +1,7 @@ """Better tokenizing for coverage.py.""" import keyword, re, token, tokenize -from coverage.backward import StringIO # pylint: disable-msg=W0622 +from coverage.backward import StringIO # pylint: disable=W0622 def phys_tokens(toks): """Return all physical tokens, even line continuations. -- cgit v1.2.1