Revert a change I accidentally checked in together with Ping's

"smallest patch ever".
This commit is contained in:
Guido van Rossum 2001-01-15 14:34:20 +00:00
parent b35ffc0417
commit fd97a919ff
1 changed files with 1 additions and 4 deletions

View File

@ -332,10 +332,7 @@ class HTTPConnection:
if port is None:
i = host.find(':')
if i >= 0:
try:
port = int(host[i+1:])
except ValueError, msg:
raise socket.error, str(msg)
host = host[:i]
else:
port = self.default_port