From e36a52f06c9bd8b649d21aab865d293c424fe429 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 21 Apr 2012 12:05:15 -0400 Subject: [PATCH] Ignore pyflakes E261 style output (multiple spaces before inline comment) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7d910160fd1..7bb7b2ab39e 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ pep8: @echo "#############################################" @echo "# Running PEP8 Compliance Tests" @echo "#############################################" - pep8 -r --ignore=E501,E221,W291,W391,E302,E251,E203,W293,E231,E303,E201,E225 lib/ bin/ + pep8 -r --ignore=E501,E221,W291,W391,E302,E251,E203,W293,E231,E303,E201,E225,E261 lib/ bin/ pyflakes: pyflakes lib/ansible/*.py bin/*