Changeset 1936a9f18591bdd2479097e97298c81a3e750658
- Timestamp:
- 02/19/08 01:10:33
(11 months ago)
- Author:
- KRKeegan <kevin@krkeegan.com>
- git-committer:
- KRKeegan <kevin@krkeegan.com> 1203405033 -0800
- git-parent:
[c459d4d6f64cff7408e3874d404543184c9612f7]
- git-author:
- KRKeegan <kevin@krkeegan.com> 1203405033 -0800
- Message:
Ignore folders and files starting with .
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf4a13d8 |
r1936a9f |
|
| 128 | 128 | files = [] |
|---|
| 129 | 129 | for file in os.listdir(path): |
|---|
| | 130 | if file.startswith('.'): |
|---|
| | 131 | continue |
|---|
| 130 | 132 | file = os.path.join(path, file) |
|---|
| 131 | 133 | if recurse and os.path.isdir(file): |
|---|