Decoding to ascii author name
This commit is contained in:
parent
c4bba449d3
commit
af7fad6353
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ subsequent commits are made after X, by different people."""
|
||||||
open (lockfile, 'w').close ()
|
open (lockfile, 'w').close ()
|
||||||
|
|
||||||
rev = change.revision
|
rev = change.revision
|
||||||
to = change.who
|
to = change.who.encode ('ascii', 'ignore').decode ('ascii')
|
||||||
title = change.comments.split ('\n')[0]
|
title = change.comments.split ('\n')[0]
|
||||||
|
|
||||||
sbj = 'Your commit \'%s\' broke GDB' % title
|
sbj = 'Your commit \'%s\' broke GDB' % title
|
||||||
|
|
Loading…
Reference in a new issue