From: Sebastien Bourdeauducq Date: Tue, 14 Feb 2012 12:15:00 +0000 (+0100) Subject: Use double quotes for all strings X-Git-Tag: 24jan2021_ls180~3244 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aef2e4b5e8fb5c6277248518330ceb2d3921220c;p=litex.git Use double quotes for all strings --- diff --git a/build.py b/build.py index 4b34f148..7559f11d 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()