diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/urllib2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py index 575bee8..4bcd397 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -1295,7 +1295,7 @@ class FTPHandler(BaseHandler): if retrlen is not None and retrlen >= 0: headers += "Content-length: %d\n" % retrlen headers = email.message_from_string(headers) - sf = StringIO(headers) + sf = StringIO(str(headers)) return addinfourl(fp, headers, req.get_full_url()) except ftplib.all_errors as msg: raise URLError('ftp error: %s' % msg).with_traceback(sys.exc_info()[2]) |