From: Fredrik Tolf Date: Thu, 14 Apr 2011 10:52:22 +0000 (+0200) Subject: python: Fixed scgi-wsgi typo in the -T option. X-Git-Tag: 0.8~13 X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=075a379e5dfba9584cc5f3b473ae343628fc160d python: Fixed scgi-wsgi typo in the -T option. --- 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]