From 5acf49c9fe6841cd10009b94e9fed4a9eac298b7 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Sat, 10 May 2014 11:59:47 -0400 Subject: [PATCH] Correct change that broke the html explorer In reorganizing the code, I made a mistake with the indentation, resulting in the http interface not working at all. --- confluent_server/confluent/httpapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/httpapi.py b/confluent_server/confluent/httpapi.py index 01217f89..5d1297fe 100644 --- a/confluent_server/confluent/httpapi.py +++ b/confluent_server/confluent/httpapi.py @@ -360,7 +360,7 @@ def resourcehandler_backend(env, start_response): else: for datum in _assemble_json(hdlr, resource, url, extension): pagecontent += datum - start_response('200 OK', headers) + start_response('200 OK', headers) yield pagecontent except exc.NotFoundException: start_response('404 Not found', headers)