From 891f6454c9798809bd303c43c099fc3ae39b5851 Mon Sep 17 00:00:00 2001 From: "maruel@chromium.org" Date: Thu, 21 Jul 2011 19:09:04 +0000 Subject: [PATCH] Fix support for pylint 0.24. TBR=dpranke@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/7487001 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@93451 0039d316-1c4b-4281-b951-d872f2087c98 --- pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pylintrc b/pylintrc index b760eb488..1c7f47ee8 100644 --- a/pylintrc +++ b/pylintrc @@ -61,8 +61,8 @@ load-plugins= # W0603: Using the global statement # W0613: Unused argument '' # W0703: Catch "Exception" -# W6501: Specify string format arguments as logging function parameters -disable=C0103,C0111,C0302,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0613,W0703,W6501 +# W1201: Specify string format arguments as logging function parameters +disable=C0103,C0111,C0302,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0613,W0703,W1201 [REPORTS]