repopick: Print change subject as unicode

* This prevents from seeing stuff like
  "b'frameworks: Add unlinked ringtone and notification volumes'"
  when using python3 as default.

Change-Id: Ie1fa85681b648edcee65680d784da4dff1779616
This commit is contained in:
LuK1337 2019-09-21 11:47:33 +02:00 committed by TheStrix
parent 97e8174437
commit 2b089ce898
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ if __name__ == '__main__':
# Print out some useful info
if not args.quiet:
print('--> Subject: "{0}"'.format(item['subject'].encode('utf-8')))
print(u'--> Subject: "{0}"'.format(item['subject']))
print('--> Project path: {0}'.format(project_path))
print('--> Change number: {0} (Patch Set {1})'.format(item['id'], item['patchset']))