Use double quotes for all strings
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Tue, 14 Feb 2012 12:15:00 +0000 (13:15 +0100)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Tue, 14 Feb 2012 12:15:00 +0000 (13:15 +0100)
build.py

index 4b34f1481c1a9f7a17542f8b21e640c77fce84b2..7559f11d62530c44dd01a28183b8e4809b8dad0d 100644 (file)
--- 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()