[pygobject] Ignore E123 in pep8 tests



commit 3864d7a3b7def035ee2daf22ba717371c8d261de
Author: Martin Pitt <martinpitt gnome org>
Date:   Fri Jun 22 13:13:37 2012 +0200

    Ignore E123 in pep8 tests
    
    This is "closing bracket does not match indentation of opening bracket's line",
    but it really looks better to have the closing bracket on the indentation level
    of the opening bracket instead of the indentation level of the line that
    contains the opening bracket.

 tests/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 92adc3c..38bfce0 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -109,7 +109,7 @@ check-local: $(LTLIBRARIES:.la=.so) Regress-1.0.typelib GIMarshallingTests-1.0.t
 	@echo "  CHECK  Pyflakes"
 	@pyflakes $(top_srcdir)
 	@echo "  CHECK  PEP8"
-	@pep8 --ignore=E501 --repeat --show-source $(top_srcdir)
+	@pep8 --ignore=E501,E123 --repeat --show-source $(top_srcdir)
 	$(RUN_TESTS_ENV_VARS) $(DBUS_LAUNCH) $(EXEC_NAME) $(PYTHON) -Wd -Werror::PendingDeprecationWarning -Werror::DeprecationWarning $(srcdir)/runtests.py
 
 check.gdb:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]