diff options
| author | Nikolaus Schlemm | 2013-05-19 14:54:16 +0200 | 
|---|---|---|
| committer | Nikolaus Schlemm | 2013-05-19 14:54:16 +0200 | 
| commit | efca5f6feccf72421577ccea8889c7de729c47b8 (patch) | |
| tree | 40ae70e7cc314e7df2825cc054021b83eb3910e9 | |
| parent | 2a004545173bb24bea83845186b79c710d9a8d01 (diff) | |
| download | django-rest-framework-efca5f6feccf72421577ccea8889c7de729c47b8.tar.bz2 | |
use double quotes for docstring instead of single quotes
| -rw-r--r-- | rest_framework/views.py | 4 | 
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: | 
