Skip to content

Commit 169e514

Browse files
committed
fix: add missing arg in error
Signed-off-by: Patrik Cyvoct <[email protected]>
1 parent dc6e652 commit 169e514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scaleway/sync.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ func tagLabelParser(tag string) (key string, value string) {
356356
}
357357
if len(tagSplit) == 2 {
358358
if tagSplit[0] == "" {
359-
klog.Errorf("tag %s is not valid: prefix is empty")
359+
klog.Errorf("tag %s is not valid: prefix is empty", tag)
360360
return "", ""
361361
}
362362
if errs := validation.IsDNS1123Subdomain(tagSplit[0]); len(errs) != 0 {

0 commit comments

Comments
 (0)