dbus/bus.py: correct name of logger
[dbus-python-phuang.git] / tools / check-py-style.sh
blob16a2c3aa3e361787a56c8981a5f7650f42676575
1 #!/bin/sh
2 fail=0
4 /bin/sh "${top_srcdir}"/tools/check-whitespace.sh "$@" || fail=$?
6 # at the moment we're not actually checking much Python style here...
7 # to be added
9 if test -n "$CHECK_FOR_LONG_LINES"
10 then
11 if egrep -n '.{80,}' "$@"
12 then
13 echo "^^^ The above files contain long lines"
14 fail=1
18 exit $fail