summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/crlf.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/scripts/crlf.py')
-rwxr-xr-xTools/scripts/crlf.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/Tools/scripts/crlf.py b/Tools/scripts/crlf.py
index 3dfa131..f231d29 100755
--- a/Tools/scripts/crlf.py
+++ b/Tools/scripts/crlf.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
"Replace CRLF with LF in argument files. Print names of changed files."
import sys, os
@@ -8,16 +8,16 @@ def main():
if os.path.isdir(filename):
print(filename, "Directory!")
continue
- data = open(filename, "rb").read()
- if '\0' in data:
+ with open(filename, "rb") as f:
+ data = f.read()
+ if b'\0' in data:
print(filename, "Binary!")
continue
- newdata = data.replace("\r\n", "\n")
+ newdata = data.replace(b"\r\n", b"\n")
if newdata != data:
print(filename)
- f = open(filename, "wb")
- f.write(newdata)
- f.close()
+ with open(filename, "wb") as f:
+ f.write(newdata)
if __name__ == '__main__':
main()