minor update

This commit is contained in:
Miroslav Stampar 2011-01-25 12:54:49 +00:00
parent 98e48bd682
commit c7f260a8bc

View File

@ -16,7 +16,7 @@ def check(module):
if module[-3:] == ".py":
print "CHECKING ", module
pout = os.popen('pylint %s'% module, 'r')
pout = os.popen('pylint --rcfile=/dev/null %s'% module, 'r')
for line in pout:
if re.match("E....:.", line):
print line