mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
...
This commit is contained in:
parent
413a2b96e2
commit
17876385c5
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ func do_socket_io(io_data *rc_io_data) (serialized_response []byte, err error) {
|
|||
network := utils.IfElse(global_options.to_network == "ip", "tcp", global_options.to_network)
|
||||
conn, err = net.Dial(network, global_options.to_address)
|
||||
if err != nil {
|
||||
err = fmt.Errorf("Failed to connect to %s %s with error: %w", network, global_options.to_address, err)
|
||||
err = fmt.Errorf("Failed to connect to %s:%s with error: %w", network, global_options.to_address, err)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue