From 6bd4bd8d8d4678df946de0d932c26fe1d680cfcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Minier?= Date: Mon, 19 Jan 2009 16:15:58 +0100 Subject: [PATCH] Tweak second prompting. --- lp-set-dup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lp-set-dup b/lp-set-dup index 9ec368e..d64f8bb 100755 --- a/lp-set-dup +++ b/lp-set-dup @@ -83,8 +83,9 @@ if __name__ == '__main__': print "Would set the following bugs as duplicates of %s: %s" % (new_main_bug.id, " ".join([str(b.id) for b in bugs_to_process])) if not options.force: + s = None try: - s = raw_input("Proceed [y/N]?") + s = raw_input("Proceed? [y/N]") except: die("Aborted") if s.lower() not in ("y", "yes"):