diff options
| author | Tom Christie | 2014-03-04 15:33:41 +0000 |
|---|---|---|
| committer | Tom Christie | 2014-03-04 15:33:41 +0000 |
| commit | 71ea5b73ce8df4f6044bc3b903ca53092255e292 (patch) | |
| tree | e9259134d4399c5ff4ddcf40af4a59f6cf847956 | |
| parent | 4edd39b2e4a6490e7eac17dd989418f745d8efc3 (diff) | |
| parent | 07cb436d610b0e9b6e60b84412c8d6552c0c55a0 (diff) | |
| download | django-rest-framework-71ea5b73ce8df4f6044bc3b903ca53092255e292.tar.bz2 | |
Merge pull request #1452 from davidbgk/patch-1
Typo in keywords arguments name
| -rw-r--r-- | rest_framework/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/views.py b/rest_framework/views.py index 2cf9b220..a2668f2c 100644 --- a/rest_framework/views.py +++ b/rest_framework/views.py @@ -295,7 +295,7 @@ class APIView(View): # Dispatch methods - def initialize_request(self, request, *args, **kargs): + def initialize_request(self, request, *args, **kwargs): """ Returns the initial request object. """ |
