diff options
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r-- | Lib/httplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index 5a039e7..722a8c6 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -368,7 +368,7 @@ class HTTPConnection: try: port = int(host[i+1:]) except ValueError: - raise InvalidURL, "nonnumeric port: '%s'"%host[i+1:] + raise InvalidURL("nonnumeric port: '%s'" % host[i+1:]) host = host[:i] else: port = self.default_port |