commit | f03facfe901d63df4ba83dab0677eb1379b7cb2c | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Mar 26 20:28:28 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Mon Mar 26 20:28:28 2007 +0000 |
tree | 528c9ea62bd29658edd6b3fbc4c7c64f71be8648 | |
parent | 51b7abc5199cb87d9e17fbbb276a6695888d12f1 [diff] [blame] |
Some nits.
diff --git a/Lib/httplib.py b/Lib/httplib.py index 008f0a4..d420f46 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py
@@ -659,7 +659,8 @@ def connect(self): """Connect to the host and port specified in __init__.""" - self.sock = socket.create_connection((self.host,self.port), self.timeout) + self.sock = socket.create_connection((self.host,self.port), + self.timeout) def close(self): """Close the connection to the HTTP server."""