providers/openstack: fix vet issue

This commit is contained in:
Mitchell Hashimoto 2015-06-24 23:16:06 -07:00
parent ede6af8763
commit ebc33d874a
1 changed files with 1 additions and 1 deletions

View File

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