Skip to content

Commit

Permalink
Removed an unused import and a flake8 exclude that caused it to be mi…
Browse files Browse the repository at this point in the history
…ssed.
  • Loading branch information
timgraham committed Jan 19, 2015
1 parent b84100e commit 2fa2068
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -3,7 +3,7 @@ doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
install-script = scripts/rpm-install.sh install-script = scripts/rpm-install.sh


[flake8] [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 ignore=E123,E128,E265,E501,W601
max-line-length = 119 max-line-length = 119


Expand Down
2 changes: 1 addition & 1 deletion tests/test_client_regress/tests.py
Expand Up @@ -13,7 +13,7 @@
from django.test.client import RedirectCycleError, RequestFactory, encode_file from django.test.client import RedirectCycleError, RequestFactory, encode_file
from django.test.utils import ContextList, str_prefix from django.test.utils import ContextList, str_prefix
from django.template.response import SimpleTemplateResponse from django.template.response import SimpleTemplateResponse
from django.utils.deprecation import RemovedInDjango19Warning, RemovedInDjango20Warning from django.utils.deprecation import RemovedInDjango20Warning
from django.utils._os import upath from django.utils._os import upath
from django.utils.translation import ugettext_lazy from django.utils.translation import ugettext_lazy
from django.http import HttpResponse from django.http import HttpResponse
Expand Down

0 comments on commit 2fa2068

Please sign in to comment.