diff options
author | Sam Bull <fox_qwluwc@TrashMail.net> | 2017-10-30 19:42:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-30 19:42:58 +0000 |
commit | 8503a11eb470c82181a9bd12ccebf5b3443c3e40 (patch) | |
tree | cc04316c263c5bb8bf9b8c9020af08c85f7f5aca /git/remote.py | |
parent | c7f657fb20c063dfc2a653f050accc9c40d06a60 (diff) | |
download | gitpython-8503a11eb470c82181a9bd12ccebf5b3443c3e40.tar.gz |
Update remote.py
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/remote.py b/git/remote.py index 7261be81..e352ab2c 100644 --- a/git/remote.py +++ b/git/remote.py @@ -52,6 +52,7 @@ def add_progress(kwargs, git, progress): given, we do not request any progress :return: possibly altered kwargs""" if progress is not None: + kwargs['universal_newlines'] = True v = git.version_info[:2] if v >= (1, 7): kwargs['progress'] = True |