Update to the latest octokit interface

This commit is contained in:
Jingwen Owen Ou 2013-06-08 18:17:14 -07:00
Родитель 5ce313d4e6
Коммит 0deaa77220
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -57,7 +57,7 @@ func (gh *GitHub) repo() octokit.Repository {
}
func findOrCreateToken(user, password string) (string, error) {
client := octokit.NewClientWithPassword(user, password)
client := octokit.NewClient().WithLogin(user, password)
auths, err := client.Authorizations()
if err != nil {
return "", err
@ -104,7 +104,7 @@ func (gh *GitHub) client() *octokit.Client {
utils.Check(err)
}
return octokit.NewClientWithToken(config.Token)
return octokit.NewClient().WithToken(config.Token)
}
func New() *GitHub {