Closes #122
This commit is contained in:
Mislav Marohnić 2011-12-22 00:54:59 +01:00
Родитель 6325f0f53b
Коммит db1cacbb11
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -929,7 +929,7 @@ help
end
def http_request(url, type = :Get)
url = URI(url)
url = URI(url) unless url.respond_to? :host
user, token = github_user(type != :Get, url.host), github_token(type != :Get, url.host)
req = Net::HTTP.const_get(type).new(url.request_uri)