diff options
author | Victor Luzgin <luzgin.st@gmail.com> | 2019-10-26 19:24:08 +0300 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-28 09:00:34 +0100 |
commit | ebf46561837f579d202d7bd4a22362f24fb858a4 (patch) | |
tree | 1c226ce35453bc211dd4fa1dc01c4729a5f4bb6d /git/cmd.py | |
parent | 87a103d8c28b496ead8b4dd8215b103414f8b7f8 (diff) | |
download | gitpython-ebf46561837f579d202d7bd4a22362f24fb858a4.tar.gz |
Fix #920
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -401,7 +401,7 @@ class Git(LazyMixin): :raise GitCommandError: if the return status is not 0""" if stderr is None: stderr = b'' - stderr = force_bytes(stderr) + stderr = force_bytes(data=stderr, encoding='utf-8') status = self.proc.wait() |