Removed byte flag when opening the new JKS file. (#51951)
This commit is contained in:
parent
d7f5262dad
commit
a5cd619ea6
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ def run_commands(module, cmd, check_rc=True):
|
|||
|
||||
|
||||
def create_file(path, content):
|
||||
with open(path, 'wb') as f:
|
||||
with open(path, 'w') as f:
|
||||
f.write(content)
|
||||
return path
|
||||
|
||||
|
|
Loading…
Reference in a new issue