From 836e3e490a45bcfc67a5bee1081bdff264bdac47 Mon Sep 17 00:00:00 2001 From: Xander Flood Date: Sun, 17 Nov 2019 10:50:50 -0500 Subject: [PATCH] fix sprintf formatter --- docker/validators.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/validators.go b/docker/validators.go index 859077f9..a0493098 100644 --- a/docker/validators.go +++ b/docker/validators.go @@ -30,7 +30,7 @@ func validateIntegerGeqThan(threshold int) schema.SchemaValidateFunc { value := v.(int) if value < threshold { errors = append(errors, fmt.Errorf( - "%q cannot be lower than %q", k, threshold)) + "%q cannot be lower than %d", k, threshold)) } return }