Tweak second prompting.

This commit is contained in:
Loïc Minier 2009-01-19 16:15:58 +01:00
parent 7a70b6df4d
commit 6bd4bd8d8d

View File

@ -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])) 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: if not options.force:
s = None
try: try:
s = raw_input("Proceed [y/N]?") s = raw_input("Proceed? [y/N]")
except: except:
die("Aborted") die("Aborted")
if s.lower() not in ("y", "yes"): if s.lower() not in ("y", "yes"):