diff options
author | sylvain thenault <sylvain.thenault@logilab.fr> | 2009-01-28 10:09:09 +0100 |
---|---|---|
committer | sylvain thenault <sylvain.thenault@logilab.fr> | 2009-01-28 10:09:09 +0100 |
commit | 9d061486e5a6266b0ebb885144088141b8b35f8f (patch) | |
tree | a7119355154e4d88c790be0cb59143b43efdbfc6 /epylint.py | |
parent | acb3ee99b9c67e6985dad3a75309b3313c7c4614 (diff) | |
download | pylint-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-x | epylint.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |