projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5165ff7
)
Use double quotes for all strings
author
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Tue, 14 Feb 2012 12:15:00 +0000
(13:15 +0100)
committer
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Tue, 14 Feb 2012 12:15:00 +0000
(13:15 +0100)
build.py
patch
|
blob
|
history
diff --git
a/build.py
b/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()