we have that in all files. To at least lesser the confusion a bit, add vim tags for that. Additionally, fix wrong #! in a few files.
14 lines
327 B
Python
Executable file
14 lines
327 B
Python
Executable file
#!/usr/bin/env python
|
|
# (C) 2006 Nikos Kouremenos <kourem@gmail.com>
|
|
|
|
import os
|
|
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')
|
|
|
|
|
|
# vim: se ts=3:
|