Kaydet (Commit) 147cd508 authored tarafından Éric Araujo's avatar Éric Araujo

Merge 3.2

......@@ -9,16 +9,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 = re.sub("\r?\n", "\r\n", data)
newdata = re.sub(b"\r?\n", b"\r\n", data)
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()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment