Kaydet (Commit) 4e96ec6a authored tarafından Guido van Rossum's avatar Guido van Rossum

nannified.

üst 7944ea52
...@@ -5,15 +5,15 @@ ...@@ -5,15 +5,15 @@
import sys, regsub, os import sys, regsub, os
for file in sys.argv[1:]: for file in sys.argv[1:]:
if os.path.isdir(file): if os.path.isdir(file):
print file, "Directory!" print file, "Directory!"
continue continue
data = open(file, "rb").read() data = open(file, "rb").read()
if '\0' in data: if '\0' in data:
print file, "Binary!" print file, "Binary!"
continue continue
newdata = regsub.gsub("\r?\n", "\r\n", data) newdata = regsub.gsub("\r?\n", "\r\n", data)
if newdata != data: if newdata != data:
print file print file
f = open(file, "wb") f = open(file, "wb")
f.write(newdata) f.write(newdata)
f.close() f.close()
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