From 104e8b483e790485b674f114c5d7291bafc1887d Mon Sep 17 00:00:00 2001 From: Neil Wilson Date: Tue, 8 Sep 2015 03:20:11 +0000 Subject: [PATCH] plugin/ipam: correct formatting of error message --- plugin/ipam.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/ipam.go b/plugin/ipam.go index 8690b895..f304301f 100644 --- a/plugin/ipam.go +++ b/plugin/ipam.go @@ -64,8 +64,8 @@ func ExecAdd(plugin string, netconf []byte) (*Result, error) { return nil, fmt.Errorf("CNI_COMMAND is not ADD") } if plugin == "" { - return nil, fmt.Errorf(`Name of IPAM plugin is missing. Specify a "type" field in the "ipam" section`) - } + return nil, fmt.Errorf(`name of IPAM plugin is missing. Please specify a "type" field in the "ipam" section`) + } pluginPath := Find(plugin) if pluginPath == "" {