From 3f46ffd25d33eb7756425d5ec9bddbc7b19f4735 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Sat, 14 Sep 2013 21:37:23 -0400 Subject: [PATCH] Fix syntax error in httpapi rework --- confluent/httpapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent/httpapi.py b/confluent/httpapi.py index 8373ff9a..09cef5f8 100644 --- a/confluent/httpapi.py +++ b/confluent/httpapi.py @@ -147,7 +147,7 @@ def serve(): # either making apache deal with it # or just supporting nginx or lighthttpd # for now, http port access - scgi.WSGIServer(resourcehandler, bindAddress=("localhost",4004)).run()) + scgi.WSGIServer(resourcehandler, bindAddress=("localhost",4004)).run() class HttpApi(object):