#!/bin/sh
set -e

PYTHONPATH=lib
export PYTHONPATH

find . -name SCCS -prune -o -name CVS -prune -o -name '*.py' -print0 | xargs -0 pychecker
