Skip to content
Snippets Groups Projects
Commit f11a0af7 authored by Chris Packham's avatar Chris Packham Committed by Simon Glass
Browse files

patman: Handle non-ascii characters in names


When gathering addresses for the Cc list patman would encounter a
UnicodeDecodeError due to non-ascii characters in the author name.
Address this by explicitly using utf-8 when building the Cc list.

Signed-off-by: default avatarChris Packham <judge.packham@gmail.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent 8d7523c5
No related branches found
No related tags found
No related merge requests found
......@@ -235,7 +235,8 @@ class Series(dict):
if cover_fname:
cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
print(cover_fname, ', '.join(set(cover_cc + all_ccs)), file=fd)
cc_list = ', '.join([x.decode('utf-8') for x in set(cover_cc + all_ccs)])
print(cover_fname, cc_list.encode('utf-8'), file=fd)
fd.close()
return fname
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment