diff options
| author | Sean Brant | 2013-03-11 22:45:15 -0500 |
|---|---|---|
| committer | Sean Brant | 2013-03-11 22:45:15 -0500 |
| commit | 8fcbba667b71d839e9cc16f8ba1f53e326e1b4e3 (patch) | |
| tree | d41d463e01056771673fd69a417886c4eae5e8a5 | |
| parent | e7362f4dbfae47862d493163d656da089ddacc04 (diff) | |
| download | pykss-8fcbba667b71d839e9cc16f8ba1f53e326e1b4e3.tar.bz2 | |
Fixes typo
| -rw-r--r-- | pykss/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykss/parser.py b/pykss/parser.py index 382cb1f..a1a2319 100644 --- a/pykss/parser.py +++ b/pykss/parser.py @@ -15,7 +15,7 @@ class Parser(object): filenames = [os.path.join(subpath, filename) for path in self.paths - for subpath, dris, files in os.walk(path) + for subpath, dirs, files in os.walk(path) for filename in files] for filename in filenames: |
