Use pylint instead of pychecker.

The latter one has to execute the modules and does not work all the time.
This commit is contained in:
Stephan Erb 2009-10-18 19:40:09 +02:00
parent ae5dbe0774
commit 58106549a1
1 changed files with 1 additions and 2 deletions

View File

@ -7,8 +7,7 @@ import sys
if os.getcwd().endswith('dev'):
os.chdir('../../src/') # we were in scripts/dev
os.system('pychecker --limit 10000 --no-shadowbuiltin *.py &> /tmp/pychecker-gajim.log')
os.system('$EDITOR /tmp/pychecker-gajim.log')
os.system("pylint --indent-string='\t' --additional-builtins='_' --disable-msg=C0111,C0103,C0111,C0112 --disable-checker=design " + "".join(sys.argv[1:]))
# vim: se ts=3: