summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2013-09-26 12:59:58 -0700
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2013-09-27 00:35:35 +0000
commitedd0151a2682bac1dfd27aae1f66e58d40dcf0a8 (patch)
tree222d256eed627946f07faf185db20d705cb8a790
parent70df18944a667329ec894a1df1e77381c5b0c09a (diff)
downloadgit-repo-edd0151a2682bac1dfd27aae1f66e58d40dcf0a8.tar.gz
Accept all UTF-8 committer names
Change-Id: I7d9d49a8bacf2dc332614d26cdfcc905be7a5290
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index cbc3c219..dec21ab1 100644
--- a/project.py
+++ b/project.py
@@ -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: