diff options
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r-- | Lib/httplib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index b7276af357..c88b172a36 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -534,6 +534,8 @@ class HTTPConnection: host = host[:i] else: port = self.default_port + if host[0] == '[' and host[-1] == ']': + host = host[1:-1] self.host = host self.port = port |