mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix write mode for ZipFiles ('wb' is invalid!)
This commit is contained in:
parent
3465375e42
commit
409f67584e
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ def main():
|
|||
successes.append(path)
|
||||
|
||||
elif compression == 'zip':
|
||||
archive = zipfile.ZipFile(creates, 'wb')
|
||||
archive = zipfile.ZipFile(creates, 'w')
|
||||
|
||||
for path in archive_paths:
|
||||
archive.write(path, path[len(arcroot):])
|
||||
|
|
Loading…
Reference in a new issue