diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 14:43:47 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 17:13:22 +0200 |
commit | f11fdf1d9d22a198511b02f3ca90146cfa5deb5c (patch) | |
tree | b8b902a555a6626294bd9388ff1bef11abef39e3 /git/util.py | |
parent | cf2335af23fb693549d6c4e72b65f97afddc5f64 (diff) | |
download | gitpython-f11fdf1d9d22a198511b02f3ca90146cfa5deb5c.tar.gz |
remote, #519: FIX1-of-2 double-decoding push-infos
+ When `universal_lines==True` (515a6b9ccf8) must tel
`handle_process_output` to stop decoding strings.
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/util.py b/git/util.py index 9faa8eff..f6f6dea9 100644 --- a/git/util.py +++ b/git/util.py @@ -3,6 +3,7 @@ # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php +from __future__ import unicode_literals import os import re |