From efca5f6feccf72421577ccea8889c7de729c47b8 Mon Sep 17 00:00:00 2001 From: Nikolaus Schlemm Date: Sun, 19 May 2013 14:54:16 +0200 Subject: [PATCH] use double quotes for docstring instead of single quotes --- rest_framework/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest_framework/views.py b/rest_framework/views.py index c9d55c18e..be64a8d0e 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: