providers/openstack: fix vet issue

This commit is contained in:
Mitchell Hashimoto 2015-06-24 23:16:06 -07:00
parent ede6af8763
commit ebc33d874a

View File

@ -56,7 +56,7 @@ func resourceComputeServerGroupV2Create(d *schema.ResourceData, meta interface{}
log.Printf("[DEBUG] Create Options: %#v", createOpts) log.Printf("[DEBUG] Create Options: %#v", createOpts)
newSG, err := servergroups.Create(computeClient, createOpts).Extract() newSG, err := servergroups.Create(computeClient, createOpts).Extract()
if err != nil { if err != nil {
return fmt.Errorf("Error creating ServerGroup", err) return fmt.Errorf("Error creating ServerGroup: %s", err)
} }
d.SetId(newSG.ID) d.SetId(newSG.ID)