Merge pull request #866 from runlevel5/patch-2

Convert int to string using rune()
mine
Fernand Galiana 2020-09-09 09:23:30 -06:00 committed by GitHub
commit 03bd49b93e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
language: go language: go
go_import_path: github.com/derailed/k9s go_import_path: github.com/derailed/k9s
go: go:
- "1.13" - "1.15"
os: os:
- linux - linux

View File

@ -83,7 +83,7 @@ func (a KeyActions) Hints() model.MenuHints {
}, },
) )
} else { } 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 return hh