# HG changeset patch # User Dennis Fink # Date 2015-10-14 00:56:10 # Node ID a79eccfd96af9b931eb50322775432d190420aba # Parent 6c4a5b888ec47dd988c29763bc2d5e86e5f9098d Fix checkers in manage.py diff --git a/manage.py b/manage.py --- a/manage.py +++ b/manage.py @@ -26,7 +26,7 @@ def checkers(checker): if os.path.splitext(f)[1] == '.py': yield os.path.join(root, f) - for root, dirs, files in os.walk('./'): + for root, dirs, files in os.walk('../'): for f in get_files(root, files): subprocess.call([checker, f])