aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/views.py
diff options
context:
space:
mode:
authorNikolaus Schlemm2013-05-19 14:54:16 +0200
committerNikolaus Schlemm2013-05-19 14:54:16 +0200
commitefca5f6feccf72421577ccea8889c7de729c47b8 (patch)
tree40ae70e7cc314e7df2825cc054021b83eb3910e9 /rest_framework/views.py
parent2a004545173bb24bea83845186b79c710d9a8d01 (diff)
downloaddjango-rest-framework-efca5f6feccf72421577ccea8889c7de729c47b8.tar.bz2
use double quotes for docstring instead of single quotes
Diffstat (limited to 'rest_framework/views.py')
-rw-r--r--rest_framework/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rest_framework/views.py b/rest_framework/views.py
index c9d55c18..be64a8d0 100644
--- a/rest_framework/views.py
+++ b/rest_framework/views.py
@@ -65,9 +65,9 @@ class APIView(View):
return content
def _generate_action_metadata(self, request):
- '''
+ """
Helper for generating the fields metadata for allowed and permitted methods.
- '''
+ """
actions = {}
for method in self.allowed_methods: