Removed byte flag when opening the new JKS file. (#51951)

pull/52588/head
Teodor Kostov 7 years ago committed by ansibot
parent d7f5262dad
commit a5cd619ea6

@ -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…
Cancel
Save