Skip to content

Commit

Permalink
support multiple csv attributes with bind options
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jan 16, 2024
1 parent 96f77df commit f7ec2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/net/socket_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f7ec2d5

Please sign in to comment.