From: Joerg Jaspert Date: Fri, 11 May 2012 21:41:13 +0000 (+0200) Subject: Merge remote-tracking branch 'ansgar/pu/wheezy' into merge X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=a63127fec222109e25b2a7e75408bbb095c6c443;hp=d594c288046f7eff586e0ac3dbc717d5d8b9b998;p=dak.git Merge remote-tracking branch 'ansgar/pu/wheezy' into merge * ansgar/pu/wheezy: Go back to temporary tables. Signed-off-by: Joerg Jaspert --- diff --git a/dak/new_security_install.py b/dak/new_security_install.py index 026dcced..353f8859 100755 --- a/dak/new_security_install.py +++ b/dak/new_security_install.py @@ -188,9 +188,11 @@ def main(): acceptfilename="%s/COMMENTS/ACCEPT.%s_%s" % (os.path.dirname(os.path.abspath(changes[0])), dbchange.source, version) acceptfiles[acceptfilename]=1 + print "Would create %s now and then go on to accept this package, if you allow me to." % (acceptfiles.keys()) if Options["No-Action"]: - print "Would create %s now and then go on to accept this package, but No-Action is set" % (acceptfiles.keys()) sys.exit(0) + else: + raw_input("Press Enter to continue") for acceptfilename in acceptfiles.keys(): accept_file = file(acceptfilename, "w")