Skip to content

Commit 82e59c8

Browse files
authored
Merge pull request #228 from Sentimentron/fix-11
Fix for error that happens on Go 1.11 and above
2 parents 5d79ed7 + ac9fa85 commit 82e59c8

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

base/error.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ func WrapError(err error) error {
8080
}
8181

8282
func FormatError(err error, format string, args ...interface{}) error {
83-
description := fmt.Sprintf(format, args)
83+
description := fmt.Sprintf(format, args...)
8484
return DescribeError(description, err)
8585
}

knn/temp.cls

0 Bytes
Binary file not shown.

trees/tmp

4 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)