You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Add missing license headers
Make `fix_headers.py` script compatible with Python 3.
This commit is contained in:
@@ -33,7 +33,7 @@ header = """\
|
||||
/*************************************************************************/
|
||||
"""
|
||||
|
||||
files = open("files", "rb")
|
||||
files = open("files", "r")
|
||||
|
||||
fname = files.readline()
|
||||
|
||||
@@ -67,7 +67,7 @@ while (fname != ""):
|
||||
# In a second pass, we skip all consecutive comment lines starting with "/*",
|
||||
# then we can append the rest (step 2).
|
||||
|
||||
fileread = open(fname.strip(), "rb")
|
||||
fileread = open(fname.strip(), "r")
|
||||
line = fileread.readline()
|
||||
header_done = False
|
||||
|
||||
@@ -92,11 +92,11 @@ while (fname != ""):
|
||||
fileread.close()
|
||||
|
||||
# Write
|
||||
filewrite = open(fname.strip(), "wb")
|
||||
filewrite = open(fname.strip(), "w")
|
||||
filewrite.write(text)
|
||||
filewrite.close()
|
||||
|
||||
# Next file
|
||||
fname = files.readline()
|
||||
|
||||
files.close()
|
||||
files.close()
|
||||
|
||||
Reference in New Issue
Block a user