From af7fad6353263cdb07da042fbef0697225fff989 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Thu, 31 Mar 2016 14:19:41 -0400 Subject: [PATCH] Decoding to ascii author name --- master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master.cfg b/master.cfg index cf43d15..5d7775c 100644 --- a/master.cfg +++ b/master.cfg @@ -203,7 +203,7 @@ subsequent commits are made after X, by different people.""" open (lockfile, 'w').close () rev = change.revision - to = change.who + to = change.who.encode ('ascii', 'ignore').decode ('ascii') title = change.comments.split ('\n')[0] sbj = 'Your commit \'%s\' broke GDB' % title