diff --git a/github/client.go b/github/client.go index fdea6285..97e377f7 100644 --- a/github/client.go +++ b/github/client.go @@ -165,7 +165,7 @@ func (client *Client) UploadReleaseAsset(release *octokit.Release, asset *os.Fil utils.Check(err) if response.StatusCode != 201 { - return fmt.Errorf("Error uploading the release asset %s, status %s", fi.Name(), response.Status) + return fmt.Errorf("Error uploading the release asset %s, %s", fi.Name(), response.Status) } return nil }