This commit is contained in:
David Calavera 2013-12-20 15:22:53 -08:00
Родитель 51fe2ae002
Коммит 81c96d5298
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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
}