diff options
author | Conley Owens <cco3@android.com> | 2013-09-27 17:28:44 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-09-27 17:28:45 +0000 |
commit | e76efdd7b342577c40aa271fa5ded9d66a783a9b (patch) | |
tree | 0dbd051a05bd41dabe8ad110d14f7e4f7a62f9dc | |
parent | 730ce4c3c2128b489176513253c1f30b378c694c (diff) | |
parent | edd0151a2682bac1dfd27aae1f66e58d40dcf0a8 (diff) | |
download | git-repo-e76efdd7b342577c40aa271fa5ded9d66a783a9b.tar.gz |
Merge "Accept all UTF-8 committer names"v1.12.4
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2274,7 +2274,7 @@ class Project(object): | |||
2274 | p.stderr)) | 2274 | p.stderr)) |
2275 | r = p.stdout | 2275 | r = p.stdout |
2276 | try: | 2276 | try: |
2277 | r = r.decode() | 2277 | r = r.decode('utf-8') |
2278 | except AttributeError: | 2278 | except AttributeError: |
2279 | pass | 2279 | pass |
2280 | if r.endswith('\n') and r.index('\n') == len(r) - 1: | 2280 | if r.endswith('\n') and r.index('\n') == len(r) - 1: |