diff options
| author | Tom Christie | 2012-09-04 21:58:35 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-09-04 21:58:35 +0100 |
| commit | c28b719333b16935e53c76fef79b096cb11322ed (patch) | |
| tree | 5b22784601e52b9b9f7db9385cceb51339681065 /djangorestframework/parsers.py | |
| parent | 8457c871963264c9f62552f30307e98221a1c25d (diff) | |
| download | django-rest-framework-c28b719333b16935e53c76fef79b096cb11322ed.tar.bz2 | |
Refactored throttling
Diffstat (limited to 'djangorestframework/parsers.py')
| -rw-r--r-- | djangorestframework/parsers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/parsers.py b/djangorestframework/parsers.py index 96dd81ed..fb08c5a0 100644 --- a/djangorestframework/parsers.py +++ b/djangorestframework/parsers.py @@ -81,7 +81,7 @@ class BaseParser(object): Should return parsed data, or a DataAndFiles object consisting of the parsed data and files. """ - raise NotImplementedError(".parse_stream() Must be overridden to be implemented.") + raise NotImplementedError(".parse_stream() must be overridden.") class JSONParser(BaseParser): |
