Skip to content

Commit 13dd327

Browse files
authored
Merge pull request kubernetes#130687 from tomma-a/master
Made the unsupportedError msg more readable
2 parents 609e4a9 + 410ada0 commit 13dd327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/proxy/util/nfacct/nfacct_others.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"runtime"
2525
)
2626

27-
var unsupportedError = fmt.Errorf(runtime.GOOS + "/" + runtime.GOARCH + "is unsupported")
27+
var unsupportedError = fmt.Errorf(runtime.GOOS + "/" + runtime.GOARCH + " is unsupported")
2828

2929
func New() (Interface, error) {
3030
return nil, unsupportedError

0 commit comments

Comments
 (0)