From 43351ae8a51042aaf8ee987c4722178bdf4c5f9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trung=20L=C3=AA?= Date: Tue, 8 Sep 2020 00:24:19 +1000 Subject: [PATCH] Convert int to string using rune() --- internal/ui/action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/action.go b/internal/ui/action.go index a98da5ef..072f5802 100644 --- a/internal/ui/action.go +++ b/internal/ui/action.go @@ -83,7 +83,7 @@ func (a KeyActions) Hints() model.MenuHints { }, ) } else { - log.Error().Msgf("Unable to locate KeyName for %#v", string(k)) + log.Error().Msgf("Unable to locate KeyName for %#v", string(rune(k))) } } return hh