python: Fixed scgi-wsgi typo in the -T option.
authorFredrik Tolf <fredrik@dolda2000.com>
Thu, 14 Apr 2011 10:52:22 +0000 (12:52 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Thu, 14 Apr 2011 10:52:22 +0000 (12:52 +0200)
python/scgi-wsgi

index 006f375..5ffcf6e 100755 (executable)
@@ -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]