diff options
author | Tom Gilbert <tom@linuxbrit.co.uk> | 2006-01-12 15:58:38 +0000 |
---|---|---|
committer | Tom Gilbert <tom@linuxbrit.co.uk> | 2006-01-12 15:58:38 +0000 |
commit | c9e5b8ee9820cafa6924617dadec567f9554aabd (patch) | |
tree | 1eaec27d50d0c79914fe0e1f36842152c5b3c4da /lib/rbot/httputil.rb | |
parent | ae05f31b934ed7923e91f3d94561b7278ff96568 (diff) |
fix the fix
Diffstat (limited to 'lib/rbot/httputil.rb')
-rw-r--r-- | lib/rbot/httputil.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rbot/httputil.rb b/lib/rbot/httputil.rb index fec14fb9..e073a56d 100644 --- a/lib/rbot/httputil.rb +++ b/lib/rbot/httputil.rb @@ -110,6 +110,7 @@ class HttpUtil h = Net::HTTP.new(uri.host, uri.port, proxy_host, proxy_port, proxy_user, proxy_port) h.use_ssl = true if uri.scheme == "https" + return h end # uri:: uri to query (Uri object) |