Skip to content

Commit 92e985c

Browse files
committed
readme.rst
1 parent 86244ed commit 92e985c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ PyFilesystem2
44
Python's Filesystem abstraction layer.
55

66
|PyPI version| |PyPI| |Build Status| |Coverage Status| |Codacy Badge|
7+
|Code Health|
78

89
Documentation
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

fs/walk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)