]> granicus.if.org Git - python/commitdiff
URLError now takes only a single parameter. This was causing
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 27 Oct 2007 17:25:12 +0000 (17:25 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 27 Oct 2007 17:25:12 +0000 (17:25 +0000)
errors in test_urllib2net on the MIPS buildbot.

Lib/urllib2.py

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