`write_text` method exists only on python 3.5.

And travis is using python 3.4 :/
This commit is contained in:
Matthieu Gautier 2018-02-03 19:56:00 +01:00
parent cfb20517a1
commit 220d434b88
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ VERSIONS = {
def write_manifest(manifest_file, archive_name, target, platform): 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} Dependencies archive for {target} on platform {platform}