aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/renderers.py
diff options
context:
space:
mode:
authorTom Christie2012-12-17 21:59:51 +0000
committerTom Christie2012-12-17 21:59:51 +0000
commitaa72f8d63d2a7b33a2e74eaba216b56c803af70c (patch)
tree80dd7156f68606ca0f85e3a9344cdfc58f2a0ae4 /rest_framework/renderers.py
parent70714c234630cd205ed88686ece3b594f387a48f (diff)
downloaddjango-rest-framework-aa72f8d63d2a7b33a2e74eaba216b56c803af70c.tar.bz2
Fix bug with M2M in browseable API
Diffstat (limited to 'rest_framework/renderers.py')
-rw-r--r--rest_framework/renderers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/renderers.py b/rest_framework/renderers.py
index 1220bca1..a4ae717d 100644
--- a/rest_framework/renderers.py
+++ b/rest_framework/renderers.py
@@ -20,7 +20,7 @@ from rest_framework.utils import dict2xml
from rest_framework.utils import encoders
from rest_framework.utils.breadcrumbs import get_breadcrumbs
from rest_framework import VERSION, status
-from rest_framework import serializers, parsers
+from rest_framework import parsers
class BaseRenderer(object):