2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

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.
This commit is contained in:
Jarrod Johnson 2014-05-10 11:59:47 -04:00
parent 4c0b6c29dd
commit 5acf49c9fe

View File

@ -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)