From e725f38bdbe192bb280009c0e24e93fd4b47cb7b Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 30 Apr 2019 12:32:47 +0200 Subject: ui: fix quoting in error strings --- service/ipc_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'service/ipc_server.go') diff --git a/service/ipc_server.go b/service/ipc_server.go index 0b0b3a05..835301b8 100644 --- a/service/ipc_server.go +++ b/service/ipc_server.go @@ -86,7 +86,7 @@ func (s *ManagerService) Start(tunnelName string, unused *uintptr) error { } trackedTunnelsLock.Unlock() if len(inTransition) != 0 { - return fmt.Errorf("Please allow the tunnel \"%s\" to finish activating", inTransition) + return fmt.Errorf("Please allow the tunnel ā€˜%sā€™ to finish activating", inTransition) } go func() { for _, t := range tt { -- cgit v1.2.3-59-g8ed1b