summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin Anderson <cmawebsite@gmail.com>2012-09-10 12:11:24 -0300
committerCollin Anderson <cmawebsite@gmail.com>2012-09-10 12:11:24 -0300
commitf416ea9c8d8a5a7224236e429d51ce5606c95c5b (patch)
tree4db1819b7bcac48618ea02b5417248ff43c98675
parentcb1614f7b30f336db2a807b43696e20fdab7b78c (diff)
fixed rfc comment typo in middleware/csrf.py
-rw-r--r--django/middleware/csrf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/middleware/csrf.py b/django/middleware/csrf.py
index 305b20e1c4..c9e8d73c82 100644
--- a/django/middleware/csrf.py
+++ b/django/middleware/csrf.py
@@ -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.