summaryrefslogtreecommitdiff
path: root/epylint.py
diff options
context:
space:
mode:
authorsylvain thenault <sylvain.thenault@logilab.fr>2009-01-28 10:09:09 +0100
committersylvain thenault <sylvain.thenault@logilab.fr>2009-01-28 10:09:09 +0100
commit9d061486e5a6266b0ebb885144088141b8b35f8f (patch)
treea7119355154e4d88c790be0cb59143b43efdbfc6 /epylint.py
parentacb3ee99b9c67e6985dad3a75309b3313c7c4614 (diff)
downloadpylint-9d061486e5a6266b0ebb885144088141b8b35f8f.tar.gz
change [en|dis]able-msg-cat options: only accept message categories
identified by their first letter (eg IRCWEF) without the need for comma as separator
Diffstat (limited to 'epylint.py')
-rwxr-xr-xepylint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/epylint.py b/epylint.py
index 3493a82..cfbf47b 100755
--- a/epylint.py
+++ b/epylint.py
@@ -6,7 +6,7 @@ import sys
from popen2 import popen3
def Run():
- p, _in, _err = popen3("pylint -f parseable -r n --disable-msg-cat=C,R,I %s"
+ p, _in, _err = popen3("pylint -f parseable -r n --disable-msg-cat=CRI %s"
% sys.argv[1])
for line in p:
match = re.search("\\[([WE])(, (.+?))?\\]", line)