#15304: fix wrong warning message in test.support.temp_cwd().

This commit is contained in:
Ezio Melotti 2012-09-21 16:48:12 +03:00
parent 0847db7c01
commit e418d76089
2 changed files with 4 additions and 1 deletions

View file

@ -600,7 +600,7 @@ def temp_cwd(name='tempcwd', quiet=False, path=None):
except OSError:
if not quiet:
raise
warnings.warn('tests may fail, unable to change the CWD to ' + name,
warnings.warn('tests may fail, unable to change the CWD to ' + path,
RuntimeWarning, stacklevel=3)
try:
yield os.getcwd()