From 25bdf1dc1f870165078858d68e19f61258717326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCdepohl?= <lorenz.huedepohl@rzg.mpg.de> Date: Fri, 18 Jan 2019 16:08:44 +0100 Subject: [PATCH] No longer allow to abort a submit request --- mpcdf_push.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/mpcdf_push.py b/mpcdf_push.py index 2ffb953..d0e9b5f 100644 --- a/mpcdf_push.py +++ b/mpcdf_push.py @@ -102,9 +102,6 @@ def do_mpcdf_push(self, subcmd, opts, *args): if req_id: print("Submitted package {0} to {1} in request {2}".format(package, to_project, req_id)) if not opts.batch: - print("\nPLEASE review the request by 'osc request show {0} --diff', or in the web interface\n".format(req_id)) - print("Press Ctrl-C to abort, any key to continue", end="") - input() result = osc.core.change_request_state(api_url, req_id, 'accepted', "Accepted on the command line via 'osc mpcdf_push'") print(" Accepting request {0}:".format(req_id), result) -- GitLab