Browse Source

drop every request not just the first

master
Edoardo Putti 7 years ago
parent
commit
b06b56885d
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      shell.py

+ 2
- 1
shell.py View File

@ -149,7 +149,8 @@ class CAManagerShell(cmd.Cmd):
print("Usage: DROP_REQUEST request_id")
return
del self.ca_manager.request[argv[0]]
for item in argv:
del self.ca_manager.request[item]
def do_gen_ssh(self, l):
'Generate a SSH Certification authority: GEN_SSH ca_id ca_description'


Loading…
Cancel
Save