From 075a379e5dfba9584cc5f3b473ae343628fc160d Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Thu, 14 Apr 2011 12:52:22 +0200 Subject: [PATCH] python: Fixed scgi-wsgi typo in the -T option. --- python/scgi-wsgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/scgi-wsgi b/python/scgi-wsgi index 006f375..5ffcf6e 100755 --- a/python/scgi-wsgi +++ b/python/scgi-wsgi @@ -20,7 +20,7 @@ for o, a in opts: sk = socket.socket(socket.AF_INET, socket.SOCK_STREAM) p = a.rfind(":") if p < 0: - bindhost = "hostname" + bindhost = "localhost" bindport = int(a) else: bindhost = a[:p] -- 2.11.0