Use double quotes for all strings

This commit is contained in:
Sebastien Bourdeauducq 2012-02-14 13:15:00 +01:00
parent 5165ff7ec3
commit aef2e4b5e8
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ os.system("rm -rf build/*")
os.chdir("build") os.chdir("build")
def str2file(filename, contents): def str2file(filename, contents):
f = open(filename, 'w') f = open(filename, "w")
f.write(contents) f.write(contents)
f.close() f.close()