diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-10-25 19:54:36 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-10-25 19:54:36 +0000 |
commit | 8fc327338c2cfeda139a5ac1a1d2d5d3d296641c (patch) | |
tree | 0790a0c96a7cabccb2664e64649d40d86f110987 | |
parent | a9280f6611d265ebfd9bd0c58e3076f441e9165b (diff) | |
download | portage-8fc327338c2cfeda139a5ac1a1d2d5d3d296641c.tar.gz portage-8fc327338c2cfeda139a5ac1a1d2d5d3d296641c.tar.bz2 portage-8fc327338c2cfeda139a5ac1a1d2d5d3d296641c.zip |
Fix: Make repoman actually USE -m commit message again (and -M
commit message file). (branches/prefix r8280)
svn path=/main/trunk/; revision=8295
-rwxr-xr-x | bin/repoman | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/repoman b/bin/repoman index 82025f6f8..c9e9138a2 100755 --- a/bin/repoman +++ b/bin/repoman @@ -330,7 +330,6 @@ qawarnings=[ missingvars=["KEYWORDS","LICENSE","DESCRIPTION","HOMEPAGE","SLOT"] allvars=portage.auxdbkeys commitmessage=None -commitmessagefile=None for x in missingvars: x += ".missing" if x not in qacats: @@ -1694,15 +1693,16 @@ else: logging.info("myupdates:", str(myupdates)) logging.info("myheaders:", str(myheaders)) - if commitmessagefile: + commitmessage = options.commitmsg + if options.commitmsgfile: try: - f = open(commitmessagefile) + f = open(options.commitmsgfile) commitmessage = f.read() f.close() del f except (IOError, OSError), e: if e.errno == errno.ENOENT: - portage.writemsg("!!! File Not Found: --commitmsgfile='%s'\n" % commitmessagefile) + portage.writemsg("!!! File Not Found: --commitmsgfile='%s'\n" % options.commitmsgfile) else: raise # We've read the content so the file is no longer needed. |