From 0755e61741a0a251bd1b8429d80a341861e956c2 Mon Sep 17 00:00:00 2001 From: Ryan Waldron Date: Thu, 18 Apr 2013 14:42:12 -0500 Subject: Fix TCPSocket name --- data/rbot/plugins/iplookup.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/rbot/plugins/iplookup.rb') diff --git a/data/rbot/plugins/iplookup.rb b/data/rbot/plugins/iplookup.rb index 65867a50..5277b95f 100644 --- a/data/rbot/plugins/iplookup.rb +++ b/data/rbot/plugins/iplookup.rb @@ -143,7 +143,7 @@ module ArinWhois module_function def raw_whois(query_string, host) - s = TCPsocket.open(host, 43) + s = TCPSocket.open(host, 43) s.write(query_string+"\n") ret = s.read s.close -- cgit v1.2.3