diff options
author | Ned Deily <nad@python.org> | 2016-10-15 19:13:20 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-10-15 19:13:20 (GMT) |
commit | bf7dcb9cd0a1299af0565a91c5c95978d72c8d3e (patch) | |
tree | dfbe75070722e659096d7c32d5a56a11a2069b37 /Doc/library/pathlib.rst | |
parent | 9f2ce2548107eedaf0970546a508c33d24920622 (diff) | |
parent | 11194f7e0fc5d4f06a081bf50d08c7e1c35a60c3 (diff) | |
download | cpython-bf7dcb9cd0a1299af0565a91c5c95978d72c8d3e.zip cpython-bf7dcb9cd0a1299af0565a91c5c95978d72c8d3e.tar.gz cpython-bf7dcb9cd0a1299af0565a91c5c95978d72c8d3e.tar.bz2 |
Remove spurious article.
Diffstat (limited to 'Doc/library/pathlib.rst')
-rw-r--r-- | Doc/library/pathlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index 61600c4..5a81917 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -841,7 +841,7 @@ call fails (for example because the path doesn't exist): If *parents* is false (the default), a missing parent raises :exc:`FileNotFoundError`. - If *exist_ok* is false (the default), an :exc:`FileExistsError` is + If *exist_ok* is false (the default), :exc:`FileExistsError` is raised if the target directory already exists. If *exist_ok* is true, :exc:`FileExistsError` exceptions will be |