From 3eb07bee07e7e81b47dcb5c050a5c295c1aab3ab Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 23 Jun 2011 05:44:27 -0400 Subject: [PATCH] no indents. --- httpbin/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/filters.py b/httpbin/filters.py index 9dc272a..2328441 100644 --- a/httpbin/filters.py +++ b/httpbin/filters.py @@ -43,7 +43,7 @@ def json(f, *args, **kwargs): if isinstance(data, Response): return data - dump = omnijson.dumps(data, indent=3) + dump = omnijson.dumps(data) r = app.make_response(dump) r.headers['Content-Type'] = 'application/json'