summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2018-10-24 09:13:13 +0200
committerTim Graham <timograham@gmail.com>2018-10-24 09:42:05 -0400
commitb5702dac7fcd903ba41b320b2ba7cd2266428e7a (patch)
tree953961468b6631a36fc7f46aadbae6f2d9c32bc6
parentbd197d3f927f6d17fc4738366126e06c6a95f366 (diff)
downloaddjango-b5702dac7fcd903ba41b320b2ba7cd2266428e7a.tar.gz
[1.11.x] Ignored flake8 W504 warnings.
W504 is mutually exclusive with W503 that we follow. Backport of 58d1e9aa8ab505912389e7cd019a6f21785ad4bf from master.
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 9d336981dd..e34124c4c2 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh
[flake8]
exclude = build,.git,.tox,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner,tests/view_tests/tests/py3_test_debug.py,tests/template_tests/annotated_tag_function.py
-ignore = W601
+ignore = W504,W601
max-line-length = 119
[isort]