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.1.9.14~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ac1ca97bfd81e2f392f1d8ccbbc393b772df98ca;p=portage.git Include gpg key in repoman commit message. --- diff --git a/bin/repoman b/bin/repoman index f2f16f25c..812f1df67 100755 --- a/bin/repoman +++ b/bin/repoman @@ -2547,7 +2547,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()