aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/parsers.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/parsers.py')
-rw-r--r--djangorestframework/parsers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/djangorestframework/parsers.py b/djangorestframework/parsers.py
index f4c8dcb4..168d391e 100644
--- a/djangorestframework/parsers.py
+++ b/djangorestframework/parsers.py
@@ -167,9 +167,9 @@ class MultiPartParser(BaseParser):
{'detail': 'multipart parse error - %s' % unicode(exc)})
return django_parser.parse()
-DEFAULT_PARSERS = ( parsers.JSONParser,
- parsers.FormParser,
- parsers.MultiPartParser )
+DEFAULT_PARSERS = ( JSONParser,
+ FormParser,
+ MultiPartParser )
if YAMLParser:
DEFAULT_PARSERS += (YAMLParser,)