status update: add 'till' variable to query
[minibook.git] / utils / checksyntax
blobe04c9ccd7c84c757cb9836a0b3665d54fcb43425
1 #!/bin/sh
3 cd ..
4 echo "=== Pyflakes"
5 find . -name '*.py' -exec pyflakes {} \;
6 echo "=== PEP8 Style"
7 python utils/pep8.py --filename=*.py --repeat .
8 cd utils
9 echo "=== Done"