diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-02-08 11:49:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-02-08 11:49:02 (GMT) |
commit | 04054d9ac202d3731d01224c44d01617742367ce (patch) | |
tree | 61e6a9aef568fe96936e3d5bdcea2a6b65aac920 /Lib/test/support/__init__.py | |
parent | edb48814414bef3a68942434142f90594d21236b (diff) | |
download | cpython-04054d9ac202d3731d01224c44d01617742367ce.zip cpython-04054d9ac202d3731d01224c44d01617742367ce.tar.gz cpython-04054d9ac202d3731d01224c44d01617742367ce.tar.bz2 |
Update test_support for my temp_dir/change_cwd changes
Diffstat (limited to 'Lib/test/support/__init__.py')
-rw-r--r-- | Lib/test/support/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 58e4f92..d82ac88 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -985,7 +985,7 @@ def change_cwd(path, quiet=False): except OSError as exc: if not quiet: raise - warnings.warn(f'tests may fail, unable to change current working ' + warnings.warn(f'tests may fail, unable to change the current working ' f'directory to {path}: {exc}', RuntimeWarning, stacklevel=3) try: |