aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/parsers.py
diff options
context:
space:
mode:
authorTom Christie2012-09-04 21:58:35 +0100
committerTom Christie2012-09-04 21:58:35 +0100
commitc28b719333b16935e53c76fef79b096cb11322ed (patch)
tree5b22784601e52b9b9f7db9385cceb51339681065 /djangorestframework/parsers.py
parent8457c871963264c9f62552f30307e98221a1c25d (diff)
downloaddjango-rest-framework-c28b719333b16935e53c76fef79b096cb11322ed.tar.bz2
Refactored throttling
Diffstat (limited to 'djangorestframework/parsers.py')
-rw-r--r--djangorestframework/parsers.py2
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):