From: Zac Medico Date: Wed, 6 Oct 2010 20:27:27 +0000 (-0700) Subject: Include gpg key in repoman commit message. X-Git-Tag: v2.2_rc90~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c7d24916a47f08755932fdad1344f08808ad8022;p=portage.git Include gpg key in repoman commit message. --- diff --git a/bin/repoman b/bin/repoman index 0b72ef161..1308ec717 100755 --- a/bin/repoman +++ b/bin/repoman @@ -2550,7 +2550,9 @@ else: # strip the closing parenthesis mymsg.write(_unicode_encode(commitmessage[:-1])) if signed: - mymsg.write(b", signed Manifest commit)") + mymsg.write(_unicode_encode( + ", signed Manifest commit with key %s)" % \ + repoman_settings["PORTAGE_GPG_KEY"])) else: mymsg.write(b", unsigned Manifest commit)") mymsg.close()