mirror of
https://gerrit.googlesource.com/git-repo
synced 2026-07-27 14:28:12 +00:00
Merge "Accept all UTF-8 committer names"
This commit is contained in:
+1
-1
@@ -2274,7 +2274,7 @@ class Project(object):
|
|||||||
p.stderr))
|
p.stderr))
|
||||||
r = p.stdout
|
r = p.stdout
|
||||||
try:
|
try:
|
||||||
r = r.decode()
|
r = r.decode('utf-8')
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
pass
|
pass
|
||||||
if r.endswith('\n') and r.index('\n') == len(r) - 1:
|
if r.endswith('\n') and r.index('\n') == len(r) - 1:
|
||||||
|
|||||||
Reference in New Issue
Block a user