mirror of https://github.com/python/cpython
use correct format code for exceptions
This commit is contained in:
parent
0ab18e4f4b
commit
901a278861
|
@ -2294,7 +2294,7 @@ class ftpwrapper:
|
||||||
conn, retrlen = self.ftp.ntransfercmd(cmd)
|
conn, retrlen = self.ftp.ntransfercmd(cmd)
|
||||||
except ftplib.error_perm as reason:
|
except ftplib.error_perm as reason:
|
||||||
if str(reason)[:3] != '550':
|
if str(reason)[:3] != '550':
|
||||||
raise URLError('ftp error: %d' % reason).with_traceback(
|
raise URLError('ftp error: %r' % reason).with_traceback(
|
||||||
sys.exc_info()[2])
|
sys.exc_info()[2])
|
||||||
if not conn:
|
if not conn:
|
||||||
# Set transfer mode to ASCII!
|
# Set transfer mode to ASCII!
|
||||||
|
@ -2306,7 +2306,7 @@ class ftpwrapper:
|
||||||
try:
|
try:
|
||||||
self.ftp.cwd(file)
|
self.ftp.cwd(file)
|
||||||
except ftplib.error_perm as reason:
|
except ftplib.error_perm as reason:
|
||||||
raise URLError('ftp error: %d' % reason) from reason
|
raise URLError('ftp error: %r' % reason) from reason
|
||||||
finally:
|
finally:
|
||||||
self.ftp.cwd(pwd)
|
self.ftp.cwd(pwd)
|
||||||
cmd = 'LIST ' + file
|
cmd = 'LIST ' + file
|
||||||
|
|
Loading…
Reference in New Issue