summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-18 20:02:15 -0500
committerTim Graham <timograham@gmail.com>2015-01-18 20:02:15 -0500
commit2fa2068406cbef08bac3e2da9b69e86c6b931f57 (patch)
treefa692014de930a360b24adf160b03b237d45750c /setup.cfg
parentb84100e8e22b175b62ce849acbcf1fa9a1e0e5b8 (diff)
downloaddjango-2fa2068406cbef08bac3e2da9b69e86c6b931f57.tar.gz
Removed an unused import and a flake8 exclude that caused it to be missed.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index d816b4c617..ef96c071b6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,7 +3,7 @@ doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
install-script = scripts/rpm-install.sh
[flake8]
-exclude=build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner,./tests/test_*.py
+exclude=build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner
ignore=E123,E128,E265,E501,W601
max-line-length = 119