aboutsummaryrefslogtreecommitdiffstats
path: root/src/rest/resource.py
diff options
context:
space:
mode:
authorTom Christie2011-01-07 17:07:20 +0000
committerTom Christie2011-01-07 17:07:20 +0000
commit95ac2396d65c42f7b801d8760dc00020d2f33e12 (patch)
tree5621490ec4e47fa5239740882295138332bd7703 /src/rest/resource.py
parentf144b769fedd421f3ec24dfd3a4f10c681192337 (diff)
downloaddjango-rest-framework-95ac2396d65c42f7b801d8760dc00020d2f33e12.tar.bz2
Start adding example app
Diffstat (limited to 'src/rest/resource.py')
-rw-r--r--src/rest/resource.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rest/resource.py b/src/rest/resource.py
index 85aea8cf..f14b2ba5 100644
--- a/src/rest/resource.py
+++ b/src/rest/resource.py
@@ -284,6 +284,7 @@ class Resource(object):
# Serialize the response content
ret = self.cleanup_response(ret)
content = emitter(self, request, status, headers, form).emit(ret)
+ print content
# Build the HTTP Response
resp = HttpResponse(content, mimetype=mimetype, status=status)