1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed a number of flake8 errors -- particularly around unused imports and local variables

This commit is contained in:
Alex Gaynor
2013-09-06 21:56:40 -07:00
parent a9589dd280
commit 2530735d2d
13 changed files with 8 additions and 21 deletions

View File

@@ -54,7 +54,6 @@ class CsrfTokenNode(Node):
else:
# It's very probable that the token is missing because of
# misconfiguration, so we raise a warning
from django.conf import settings
if settings.DEBUG:
warnings.warn("A {% csrf_token %} was used in a template, but the context did not provide the value. This is usually caused by not using RequestContext.")
return ''