mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-25 08:43:36 +00:00
monkeysphere: Fix error with no host keys
This commit is contained in:
parent
608d19dc2b
commit
1f8ccb6c93
@ -53,9 +53,11 @@ def subcommand_host_show_keys(arguments):
|
||||
"""Show host key fingerprints."""
|
||||
try:
|
||||
output = subprocess.check_output(
|
||||
['monkeysphere-host', 'show-keys'] + arguments.key_ids)
|
||||
['monkeysphere-host', 'show-keys'] + arguments.key_ids,
|
||||
stderr=subprocess.DEVNULL)
|
||||
except subprocess.CalledProcessError:
|
||||
# no keys available
|
||||
print(json.dumps({'keys': []}))
|
||||
return
|
||||
|
||||
# parse output
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user