apt_key: Fix traceback when key_id format is invalid

Signed-off-by: Philippe Pepiot <phil@philpep.org>
pull/6468/head
Philippe Pepiot 10 years ago committed by Philippe PEPIOT
parent d1753046e0
commit 92e8e59cad

@ -199,7 +199,7 @@ def main():
if key_id.startswith('0x'):
key_id = key_id[2:]
except ValueError:
module.fail_json("Invalid key_id")
module.fail_json(msg="Invalid key_id", id=key_id)
# FIXME: I think we have a common facility for this, if not, want
check_missing_binaries(module)

Loading…
Cancel
Save