diff options
author | Alexander Beisig <alexander.beisig@gmx.de> | 2006-05-30 17:29:23 +0000 |
---|---|---|
committer | Alexander Beisig <alexander.beisig@gmx.de> | 2006-05-30 17:29:23 +0000 |
commit | f841a9060041bdb57dbfa3169212ba57936619c9 (patch) | |
tree | bc6c8c6f1d713df2969f469c2efd1202cff724c8 | |
parent | 1b072614c42f43bf0d9cc5e2ce2499de776ab93d (diff) |
fix httputil.rb when using proxy (Ticket #80)
-rw-r--r-- | lib/rbot/httputil.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/httputil.rb b/lib/rbot/httputil.rb index e073a56d..dc128c43 100644 --- a/lib/rbot/httputil.rb +++ b/lib/rbot/httputil.rb @@ -98,7 +98,7 @@ class HttpUtil proxy = URI.parse @bot.config["http.proxy_uri"] rescue nil end if proxy - debug "proxy is set to #{proxy.uri}" + debug "proxy is set to #{proxy.host} port #{proxy.port}" if proxy_required(uri) proxy_host = proxy.host proxy_port = proxy.port |