From 20c7e605c987bbfec23fbd305e71168b21672bec Mon Sep 17 00:00:00 2001 From: Jens Alm Date: Sat, 2 Jul 2011 19:12:43 +0200 Subject: [PATCH] Sloppy copy-pasting... --- djangorestframework/parsers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/djangorestframework/parsers.py b/djangorestframework/parsers.py index f4c8dcb40..168d391ea 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,)