diff options
author | Conley Owens <cco3@android.com> | 2013-09-26 12:59:58 -0700 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2013-09-27 00:35:35 +0000 |
commit | edd0151a2682bac1dfd27aae1f66e58d40dcf0a8 (patch) | |
tree | 222d256eed627946f07faf185db20d705cb8a790 /project.py | |
parent | 70df18944a667329ec894a1df1e77381c5b0c09a (diff) | |
download | git-repo-edd0151a2682bac1dfd27aae1f66e58d40dcf0a8.tar.gz |
Accept all UTF-8 committer names
Change-Id: I7d9d49a8bacf2dc332614d26cdfcc905be7a5290
Diffstat (limited to 'project.py')
-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: |