diff --git a/post-processor/vagrant-cloud/client.go b/post-processor/vagrant-cloud/client.go index f3cc0c66d..4f8ac62bb 100644 --- a/post-processor/vagrant-cloud/client.go +++ b/post-processor/vagrant-cloud/client.go @@ -72,7 +72,7 @@ func (v *VagrantCloudClient) ValidateAuthentication() error { } defer resp.Body.Close() if resp.StatusCode != 200 { - return fmt.Errorf("Invalid credentials: %s", resp.Status) + return fmt.Errorf(resp.Status) } return nil }