Use commit-id instead of title when sending breakage email
This commit is contained in:
parent
f6545f3e58
commit
20cf61dfa5
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ subsequent commits are made after X, by different people."""
|
||||||
to = change.who.encode ('ascii', 'ignore').decode ('ascii')
|
to = change.who.encode ('ascii', 'ignore').decode ('ascii')
|
||||||
title = change.comments.split ('\n')[0]
|
title = change.comments.split ('\n')[0]
|
||||||
|
|
||||||
sbj = 'Oh dear. I regret to inform you that commit \'%s\' might be unfortunate' % title
|
sbj = 'Oh dear. I regret to inform you that commit %s might be unfortunate' % change.revision
|
||||||
if branch != 'master':
|
if branch != 'master':
|
||||||
sbj += ' [%s]' % branch
|
sbj += ' [%s]' % branch
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue