# HG changeset patch # User Steve Losh # Date 1279664867 14400 # Node ID 79f123993c818e1a43cc6c27e32d29e40f0f4ec9 # Parent 8f18f574990c76ea755301ce4fddd5789a059e50 cli: encode usernames in headers to the local encoding diff -r 8f18f574990c -r 79f123993c81 review/cli.py --- a/review/cli.py Thu Jul 15 20:09:46 2010 -0400 +++ b/review/cli.py Tue Jul 20 18:27:47 2010 -0400 @@ -223,7 +223,7 @@ spacing = 1 spacing = ' ' * spacing - return author_part + spacing + detail_part + '\n' + return tolocal(author_part) + spacing + detail_part + '\n' def _print_comment(comment, before='', after=''):