diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-18 12:59:39 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-18 12:59:39 +0300 |
commit | 9bc78972ad9f5a998888b4fc94e81aeff6860d6f (patch) | |
tree | 32de913a2c491c376df46c8eb562051b969e0959 | |
parent | 3d5dff3f905685defdbfac689b8d0ac120ebe8f6 (diff) | |
download | cpython-9bc78972ad9f5a998888b4fc94e81aeff6860d6f.tar.gz |
#12277: add missing comma.
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 573775572f..ea788d31f8 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1514,7 +1514,7 @@ Files and Directories ineffective, because in bottom-up mode the directories in *dirnames* are generated before *dirpath* itself is generated. - By default errors from the :func:`listdir` call are ignored. If optional + By default, errors from the :func:`listdir` call are ignored. If optional argument *onerror* is specified, it should be a function; it will be called with one argument, an :exc:`OSError` instance. It can report the error to continue with the walk, or raise the exception to abort the walk. Note that the filename |