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 43eeaa147f
commit 1f592ecf82
1 changed files with 1 additions and 1 deletions

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. " +