diff options
-rw-r--r-- | git/index/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/index/base.py b/git/index/base.py index 7b504107..b8c9d5e6 100644 --- a/git/index/base.py +++ b/git/index/base.py @@ -392,7 +392,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable): continue # END glob handling try: - for root, _dirs, files in os.walk(abs_path, onerror=raise_exc): + for root, _dirs, files in os.walk(abs_path, onerror=raise_exc): for rela_file in files: # add relative paths only yield osp.join(root.replace(rs, ''), rela_file) |