Bug 1252440 - Ignore unicode characters that cannot be converted when building graph r=wcosta

MozReview-Commit-ID: 5CxG7NMivBO

--HG--
extra : rebase_source : d4858f6f6bedf834a84a672f7862e0032c290a07
This commit is contained in:
Gregory Arndt 2016-03-01 07:41:27 -06:00
Родитель bf172d4236
Коммит 07505e6301
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -337,7 +337,7 @@ class Graph(object):
len(vcs_info.changesets))
for c in vcs_info.changesets:
sys.stderr.write('%s %s\n' % (
c['node'][0:12], c['desc'].splitlines()[0]))
c['node'][0:12], c['desc'].splitlines()[0].encode('ascii', 'ignore')))
changed_files |= set(c['files'])