From 4dfb338915305eacc47e4073908acbba38c9b34b Mon Sep 17 00:00:00 2001 From: "mingsheng.su" Date: Fri, 28 Jun 2019 12:02:45 +0800 Subject: [PATCH] Update builder/ucloud/uhost/step_config_vpc.go Co-Authored-By: Megan Marsh --- builder/ucloud/uhost/step_config_vpc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/ucloud/uhost/step_config_vpc.go b/builder/ucloud/uhost/step_config_vpc.go index 0290775ad..3378071f4 100644 --- a/builder/ucloud/uhost/step_config_vpc.go +++ b/builder/ucloud/uhost/step_config_vpc.go @@ -22,7 +22,7 @@ func (s *stepConfigVPC) Run(ctx context.Context, state multistep.StateBag) multi vpcSet, err := client.describeVPCById(s.VPCId) if err != nil { if isNotFoundError(err) { - err = fmt.Errorf("the specified vpc %q not exist", s.VPCId) + err = fmt.Errorf("the specified vpc %q does not exist", s.VPCId) return halt(state, err, "") } return halt(state, err, fmt.Sprintf("Error on querying specified vpc %q", s.VPCId))