From aef2e4b5e8fb5c6277248518330ceb2d3921220c Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 14 Feb 2012 13:15:00 +0100 Subject: [PATCH] Use double quotes for all strings --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 4b34f1481..7559f11d6 100644 --- a/build.py +++ b/build.py @@ -22,7 +22,7 @@ os.system("rm -rf build/*") os.chdir("build") def str2file(filename, contents): - f = open(filename, 'w') + f = open(filename, "w") f.write(contents) f.close()