summaryrefslogtreecommitdiffstats
path: root/tpl/collections/reflect_helpers.go
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/collections/reflect_helpers.go')
-rw-r--r--tpl/collections/reflect_helpers.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/tpl/collections/reflect_helpers.go b/tpl/collections/reflect_helpers.go
index 4aa137e88..4178850aa 100644
--- a/tpl/collections/reflect_helpers.go
+++ b/tpl/collections/reflect_helpers.go
@@ -18,8 +18,9 @@ import (
"reflect"
"time"
+ "errors"
+
"github.com/mitchellh/hashstructure"
- "github.com/pkg/errors"
)
var (
@@ -103,7 +104,7 @@ func convertValue(v reflect.Value, to reflect.Type) (reflect.Value, error) {
case isNumber(kind):
return convertNumber(v, kind)
default:
- return reflect.Value{}, errors.Errorf("%s is not assignable to %s", v.Type(), to)
+ return reflect.Value{}, fmt.Errorf("%s is not assignable to %s", v.Type(), to)
}
}