aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/resource.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/resource.py')
-rw-r--r--djangorestframework/resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/resource.py b/djangorestframework/resource.py
index 9c3a03c3..15c1d7c8 100644
--- a/djangorestframework/resource.py
+++ b/djangorestframework/resource.py
@@ -197,7 +197,7 @@ class Resource(EmitterMixin, ParserMixin, AuthenticatorMixin, FormValidatorMixin
# Always add these headers
response.headers['Allow'] = ', '.join(self.allowed_methods)
- response.headers['Vary'] = 'Authenticate, Allow'
+ response.headers['Vary'] = 'Authenticate, Accept'
return self.emit(response)