1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

find_interesting_reviews.py: avoid crash on non-ascii data.

This commit is contained in:
Kristof Beyls 2019-11-08 11:07:53 +00:00
parent 58745c7360
commit dd6caf357c

View File

@ -394,7 +394,7 @@ def print_most_recent_reviews(phab, days, filter_reviewers):
def add_msg(msg):
msgs.append(msg)
print(msg)
print(msg.encode('utf-8'))
newest_reviews = get_most_recent_reviews(days)
add_msg(u"These are the reviews that look interesting to be reviewed. " +