Merge "Accept all UTF-8 committer names"

This commit is contained in:
Conley Owens 2013-09-27 17:28:44 +00:00 committed by Gerrit Code Review
commit e76efdd7b3

View File

@ -2274,7 +2274,7 @@ class Project(object):
p.stderr))
r = p.stdout
try:
r = r.decode()
r = r.decode('utf-8')
except AttributeError:
pass
if r.endswith('\n') and r.index('\n') == len(r) - 1: