From f7ec2d5bd9a52da1488f785179ec10d5af0239df Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 16 Jan 2024 18:58:57 +0700 Subject: [PATCH] support multiple csv attributes with bind options --- xpra/net/socket_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpra/net/socket_util.py b/xpra/net/socket_util.py index 09b6ae6df0..33292453dc 100644 --- a/xpra/net/socket_util.py +++ b/xpra/net/socket_util.py @@ -636,7 +636,7 @@ def setup_local_sockets(bind, socket_dir: str, socket_dirs, session_dir: str, for b in bind: if b in ("none", ""): continue - parts = b.split(",") + parts = b.split(",", 1) sockpath = parts[0] options = {} if len(parts) == 2: