File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ PyFilesystem2
44Python's Filesystem abstraction layer.
55
66|PyPI version | |PyPI | |Build Status | |Coverage Status | |Codacy Badge |
7+ |Code Health |
78
89Documentation
910-------------
@@ -112,3 +113,5 @@ missing here.
112113 :target: https://coveralls.io/github/PyFilesystem/pyfilesystem2
113114.. |Codacy Badge | image :: https://api.codacy.com/project/badge/Grade/30ad6445427349218425d93886ade9ee
114115 :target: https://www.codacy.com/app/will-mcgugan/pyfilesystem2?utm_source=github.com&utm_medium=referral&utm_content=PyFilesystem/pyfilesystem2&utm_campaign=Badge_Grade
116+ .. |Code Health | image :: https://landscape.io/github/PyFilesystem/pyfilesystem2/master/landscape.svg?style=flat
117+ :target: https://landscape.io/github/PyFilesystem/pyfilesystem2/master
Original file line number Diff line number Diff line change @@ -508,7 +508,7 @@ def walk(self,
508508 Example:
509509 >>> home_fs = open_fs('~/')
510510 >>> walker = Walker(filter=['*.py'])
511- >>> for path, dirs, files in walker.walk(home_fs, ['details']):
511+ >>> for path, dirs, files in walker.walk(home_fs, namespaces= ['details']):
512512 ... print("[{}]".format(path))
513513 ... print("{} directories".format(len(dirs)))
514514 ... total = sum(info.size for info in files)
You can’t perform that action at this time.
0 commit comments