summaryrefslogtreecommitdiff
path: root/Lib/os.py
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-09 20:00:17 +0000
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-09 20:00:17 +0000
commit9b23f26a670e9412bf2164a1c67e1c71c94e138b (patch)
treef60f20251fd007cc08f1efd7e113210b3a1775c4 /Lib/os.py
parent36abe13b8122792b432c873a2dfcb0a565de73e8 (diff)
downloadcpython-9b23f26a670e9412bf2164a1c67e1c71c94e138b.tar.gz
Removed remnants of os.path.walk().
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 97334f825e..a489524795 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -264,7 +264,7 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
from os.path import join, isdir, islink
# We may not have read permission for top, in which case we can't
- # get a list of the files the directory contains. os.path.walk
+ # get a list of the files the directory contains. os.walk
# always suppressed the exception then, rather than blow up for a
# minor reason when (say) a thousand readable directories are still
# left to visit. That logic is copied here.