From 1be56c5bbad167aa84044d0487f44d66c997a288 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 11 Nov 2011 17:56:12 -0500 Subject: [PATCH] Always show the list of outstanding commits. When we've found that you have multiple outstanding commits, show them even without the verbose flag. Change-Id: I57dfffeacf742feee59a26de10968726d9716cf8 --- git-review | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/git-review b/git-review index 5cb2b34..370d300 100755 --- a/git-review +++ b/git-review @@ -290,8 +290,7 @@ def assert_one_change(remote, branch, yes): if output_lines > 1: if not yes: print "You have more than one commit that you are about to submit." - if VERBOSE: - print "The outstanding commits are:\n\n%s\n" % output + print "The outstanding commits are:\n\n%s\n" % output print "Is this really what you meant to do?" yes_no = raw_input("Type 'yes' to confirm: ") if yes_no.lower != "yes":