Skip to content

Commit

Permalink
Fix docs typo in java_cert function docstring (ansible#25942)
Browse files Browse the repository at this point in the history
  • Loading branch information
choutos authored and ryansb committed Jun 21, 2017
1 parent f831be6 commit 7bed60b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/modules/system/java_cert.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def import_cert_path(module, executable, path, keystore_path, keystore_pass, ali
return module.fail_json(msg=import_out, rc=import_rc, cmd=import_cmd)

def delete_cert(module, executable, keystore_path, keystore_pass, alias):
''' Delete cerificate identified with alias from keystore on keystore_path '''
''' Delete certificate identified with alias from keystore on keystore_path '''
del_cmd = ("%s -delete -keystore '%s' -storepass '%s' "
"-alias '%s'")%(executable, keystore_path, keystore_pass, alias)

Expand Down

0 comments on commit 7bed60b

Please sign in to comment.