From 548e4df1f2dcac2ea65797f3d60475a09a65b2b3 Mon Sep 17 00:00:00 2001 From: David Shirley Date: Fri, 16 Jan 2015 11:28:47 -0800 Subject: [PATCH] Remove trailing space from dictionary --- httpbin/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/core.py b/httpbin/core.py index e631b85..79086b9 100644 --- a/httpbin/core.py +++ b/httpbin/core.py @@ -537,7 +537,7 @@ def stream_random_bytes(n): yield(bytes(chunks)) headers = {'Transfer-Encoding': 'chunked', - 'Content-Type': 'application/octet-stream' } + 'Content-Type': 'application/octet-stream'} return Response(generate_bytes(), headers=headers)