]> granicus.if.org Git - python/commitdiff
nannified.
authorGuido van Rossum <guido@python.org>
Mon, 14 Sep 1998 15:56:40 +0000 (15:56 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 14 Sep 1998 15:56:40 +0000 (15:56 +0000)
Tools/scripts/lfcr.py

index 7f4d58fe089b9f367453857f694f048b8d22a97a..454dc902d676e5b6b7f22091e8860616e8d89163 100755 (executable)
@@ -5,15 +5,15 @@
 import sys, regsub, os
 for file in sys.argv[1:]:
     if os.path.isdir(file):
-       print file, "Directory!"
-       continue
+        print file, "Directory!"
+        continue
     data = open(file, "rb").read()
     if '\0' in data:
-       print file, "Binary!"
-       continue
+        print file, "Binary!"
+        continue
     newdata = regsub.gsub("\r?\n", "\r\n", data)
     if newdata != data:
-       print file
-       f = open(file, "wb")
-       f.write(newdata)
-       f.close()
+        print file
+        f = open(file, "wb")
+        f.write(newdata)
+        f.close()