Accept all UTF-8 committer names

Change-Id: I7d9d49a8bacf2dc332614d26cdfcc905be7a5290
This commit is contained in:
Conley Owens 2013-09-26 12:59:58 -07:00 committed by David Pursehouse
parent 70df18944a
commit edd0151a26

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: