]> granicus.if.org Git - python/commitdiff
Fix the test_urllib2net failures that were caused by r58067.
authorNeal Norwitz <nnorwitz@gmail.com>
Thu, 24 Jan 2008 07:40:51 +0000 (07:40 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Thu, 24 Jan 2008 07:40:51 +0000 (07:40 +0000)
I'm not sure this is the correct fix, but at least the test passes
now and should be closer to correct.

Lib/urllib2.py

index 5a6f49995f15e49ac5e21c6a465bceb3f13c5102..8bf08848b155adc20c93bfeb20a1fc8afd8bf83e 100644 (file)
@@ -1246,7 +1246,7 @@ class FTPHandler(BaseHandler):
         import mimetypes
         host = req.get_host()
         if not host:
-            raise URLError, ('ftp error', 'no host given')
+            raise URLError('ftp error: no host given')
         host, port = splitport(host)
         if port is None:
             port = ftplib.FTP_PORT
@@ -1292,7 +1292,7 @@ class FTPHandler(BaseHandler):
             headers = mimetools.Message(sf)
             return addinfourl(fp, headers, req.get_full_url())
         except ftplib.all_errors, msg:
-            raise URLError, ('ftp error', msg), sys.exc_info()[2]
+            raise URLError, ('ftp error: %s' % msg), sys.exc_info()[2]
 
     def connect_ftp(self, user, passwd, host, port, dirs, timeout):
         fw = ftpwrapper(user, passwd, host, port, dirs, timeout)