fixed rfc comment typo in middleware/csrf.py

This commit is contained in:
Collin Anderson 2012-09-10 12:11:24 -03:00
parent cb1614f7b3
commit f416ea9c8d
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class CsrfViewMiddleware(object):
if getattr(callback, 'csrf_exempt', False):
return None
# Assume that anything not defined as 'safe' by RC2616 needs protection
# Assume that anything not defined as 'safe' by RFC2616 needs protection
if request.method not in ('GET', 'HEAD', 'OPTIONS', 'TRACE'):
if getattr(request, '_dont_enforce_csrf_checks', False):
# Mechanism to turn off CSRF checks for test suite.