From 1a87308071e88a23f44191d57ef7c09f7fdc9196 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 28 Jul 2023 09:51:20 +0100 Subject: gunicorn: Squeeze adjacent strings together. * guix/forge/gunicorn.scm (socket->gunicorn-bind): Squeeze adjacent strings "]" and ":" into one. --- guix/forge/gunicorn.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/forge/gunicorn.scm b/guix/forge/gunicorn.scm index cdc6ecf..0bd9461 100644 --- a/guix/forge/gunicorn.scm +++ b/guix/forge/gunicorn.scm @@ -126,7 +126,7 @@ (($ (? ipv4-address? ip) port) (string-append ip ":" (number->string port))) (($ (? ipv6-address? ip) port) - (string-append "[" ip "]" ":" (number->string port))) + (string-append "[" ip "]:" (number->string port))) (($ path) (string-append "unix:" path)))) -- cgit v1.2.3