Fix SF#1457312: bad socket error handling in distutils "upload" command.

This commit is contained in:
Phillip J. Eby 2006-07-10 19:18:35 +00:00
parent 5d86bdb3ae
commit 137ff79329
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ class upload(Command):
http.endheaders() http.endheaders()
http.send(body) http.send(body)
except socket.error, e: except socket.error, e:
self.announce(e.msg, log.ERROR) self.announce(str(e), log.ERROR)
return return
r = http.getresponse() r = http.getresponse()