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)) 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: