diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:41:12 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | b16b6649cfdaac0c6734af1b432c57ab31680081 (patch) | |
tree | 91bbce96743c27445551c4c481ea34882cd187c6 | |
parent | 05e9a6fc1fcb996d8a37faf64f60164252cc90c2 (diff) | |
download | gitpython-b16b6649cfdaac0c6734af1b432c57ab31680081.tar.gz |
removed trailing whitespaces
-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) |