From cb87b9e698d278513190b086746283767719feab Mon Sep 17 00:00:00 2001 From: Edoardo Putti Date: Sat, 20 Aug 2016 01:41:59 +0200 Subject: [PATCH] remove user decision prompt --- ca_manager.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ca_manager.py b/ca_manager.py index c5fa0d4..b2f72f4 100755 --- a/ca_manager.py +++ b/ca_manager.py @@ -221,9 +221,6 @@ def sign_request(ca_manager, choosen_request, choosen_ca): print("You are about to sign this request with the following CA:") print("- %s (%s)" % (authority.ca_id, authority.name)) - confirm = input('Proceed? (type yes)> ') - if confirm != 'yes': - return cert_path = authority.sign(request) ca_manager.drop_request(request)