Merge pull request #21807 from smithfarm/wip-python-encoding

script: build-integration-branch: avoid Unicode error

Reviewed-by: Yuri Weinstein <yweinste@redhat.com>
Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2018-05-04 09:33:45 +08:00 committed by GitHub
commit 46fc58a120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,5 +61,5 @@ for pr in prs:
pr['head']['ref']])
assert not r
print('--- done. these PRs were included:')
print('\n'.join(prtext))
print('\n'.join(prtext).encode('ascii', errors='ignore').decode())
print('--- perhaps you want to: make && ctest -j12 && git push ci %s' % branch)