diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-10-04 06:46:44 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-10-04 06:46:44 +0000 |
commit | b9e508c0ebe71b004a86294e06b5e5fb71ece9f1 (patch) | |
tree | ea9f26ec0c90de0e46ec33ba78ee9fc27adaa834 | |
parent | 2d0a0f6b0c7cf9ef01518c8596e58daefbb61a87 (diff) | |
download | portage-b9e508c0ebe71b004a86294e06b5e5fb71ece9f1.tar.gz portage-b9e508c0ebe71b004a86294e06b5e5fb71ece9f1.tar.bz2 portage-b9e508c0ebe71b004a86294e06b5e5fb71ece9f1.zip |
Fix logic for the message that's show when
--force is disabled.
svn path=/main/trunk/; revision=7915
-rwxr-xr-x | bin/repoman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman index a5e832405..d3b0b598d 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1606,7 +1606,7 @@ else: " \"You want to commit even with these QA issues?\n" + \ " I'll take it this time, but I'm not happy.\"\n" elif dofail: - if "--force" in myoptions: + if "--force" in myoptions and not can_force: print bad("The --force option has been disabled due to extraordinary issues.") print turquoise("Please fix these important QA issues first.") print green("RepoMan sez:"),"\"Make your QA payment on time and you'll never see the likes of me.\"\n" |