diff options
| author | Sworddragon <sworddragon2@aol.com> | 2011-04-02 04:49:14 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-04-03 22:34:04 +0200 |
| commit | e3a2d656f165c39e46ad4d04f7acc91bccf3b666 (patch) | |
| tree | c50b2262e3fdfa6ecdf802c8fda3959a149b0989 /scripts/build.py | |
| parent | 3e6b77b0409d05d5ed19c61e24246ed2a88b65e7 (diff) | |
| download | zcatch-e3a2d656f165c39e46ad4d04f7acc91bccf3b666.tar.gz zcatch-e3a2d656f165c39e46ad4d04f7acc91bccf3b666.zip | |
Fixed Python 3 support
Diffstat (limited to 'scripts/build.py')
| -rw-r--r-- | scripts/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build.py b/scripts/build.py index 0fa0bd2b..bceac47f 100644 --- a/scripts/build.py +++ b/scripts/build.py @@ -220,7 +220,7 @@ if 1: content += "call %VSPATH%vsvars32.bat\n\n" content += ":compile\n" content += 'cd %s\n"%s\\%s%sbam" config\n"%s\\%s%sbam" %s' % (src_dir_teeworlds, work_dir, src_dir_bam, bam_execution_path, work_dir, src_dir_bam, bam_execution_path, options.release_type) - file.write(content) + file.write(content.encode()) file.close() command = os.system("build.bat") else: |