Merge pull request #115 from kiwix/write_text_using_py34
`write_text` method exists only on python 3.5.
This commit is contained in:
commit
2b40901294
|
@ -31,7 +31,8 @@ VERSIONS = {
|
|||
|
||||
|
||||
def write_manifest(manifest_file, archive_name, target, platform):
|
||||
manifest_file.write_text('''{archive_name}
|
||||
with manifest_file.open(mode='w') as f:
|
||||
f.write('''{archive_name}
|
||||
***************************
|
||||
|
||||
Dependencies archive for {target} on platform {platform}
|
||||
|
|
Loading…
Reference in New Issue