summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-10-05 03:13:52 +0000
committerZac Medico <zmedico@gentoo.org>2007-10-05 03:13:52 +0000
commit53537d28745eae6346c9da1e5d032357dd726725 (patch)
tree09be4b92a5853ba94af604330a7d1195bc079182 /bin/repoman
parent33c92004bf8fd3e8c8b035715532d04192170012 (diff)
downloadportage-53537d28745eae6346c9da1e5d032357dd726725.tar.gz
portage-53537d28745eae6346c9da1e5d032357dd726725.tar.bz2
portage-53537d28745eae6346c9da1e5d032357dd726725.zip
Fix logic for the message that's show when
--force is disabled. (trunk r7915) svn path=/main/branches/2.1.2/; revision=7937
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index 6905731c7..49b3d8a64 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1696,7 +1696,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"