[pygobject] Ignore E124 pep8 error
- From: Martin Pitt <martinpitt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pygobject] Ignore E124 pep8 error
- Date: Mon, 20 Aug 2012 09:39:07 +0000 (UTC)
commit 631a9cd05cbc7dc3d0f743a84b948ef7d93c0ed4
Author: Martin Pitt <martinpitt gnome org>
Date: Mon Aug 20 11:36:19 2012 +0200
Ignore E124 pep8 error
This is "closing bracket does not match visual indentation" which is really
stupid. We do want the closing bracket at the same indentation level as the
opening bracket, not the indentation level of the whole statement.
tests/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 950385e..a3de105 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,E123 --repeat --show-source $(top_srcdir)
+ @pep8 --ignore=E501,E123,E124 --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]