diff options
author | Larry Hastings <larry@hastings.org> | 2012-06-23 00:01:41 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2012-06-23 00:01:41 (GMT) |
commit | 90867a5abab7fc866e4cb392c34242b49ea45258 (patch) | |
tree | d3679e78a6967d5e2773680beab879b25a1e7e39 /Lib/test/test_shutil.py | |
parent | 9cf065cfdc4245ea7e31edcb2e6ede0cea47d148 (diff) | |
download | cpython-90867a5abab7fc866e4cb392c34242b49ea45258.zip cpython-90867a5abab7fc866e4cb392c34242b49ea45258.tar.gz cpython-90867a5abab7fc866e4cb392c34242b49ea45258.tar.bz2 |
Issue #14626: Fix buildbot issues on FreeBSD (AMD64). (Fingers crossed.)
Diffstat (limited to 'Lib/test/test_shutil.py')
-rw-r--r-- | Lib/test/test_shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index ad835ae..1929237 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -296,7 +296,7 @@ class TestShutil(unittest.TestCase): def make_chflags_raiser(err): ex = OSError() - def _chflags_raiser(path, flags): + def _chflags_raiser(path, flags, *, follow_symlinks=True): ex.errno = err raise ex return _chflags_raiser |