diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-27 17:09:41 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 03:35:38 +0200 |
commit | 4cede2368aa980e30340f0ed0a1906d65fe1046c (patch) | |
tree | e541497eea1299f461daec74124787d6c8e76d26 /git/index | |
parent | e61439b3018b0b9a8eb43e59d0d7cf32041e2fed (diff) | |
download | gitpython-4cede2368aa980e30340f0ed0a1906d65fe1046c.tar.gz |
Win, #519: Ensure fixtures & bashscript checked-out eol=lf
+ FIX all Diff TCs.
Diffstat (limited to 'git/index')
-rw-r--r-- | git/index/fun.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/index/fun.py b/git/index/fun.py index 1e931b7c..80db46b1 100644 --- a/git/index/fun.py +++ b/git/index/fun.py @@ -76,7 +76,7 @@ def run_commit_hook(name, index): stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=index.repo.working_dir, - close_fds=(is_posix), + close_fds=is_posix, creationflags=PROC_CREATIONFLAGS,) stdout, stderr = cmd.communicate() cmd.stdout.close() |