at v206 626 B view raw
1diff --git a/src/etc/tidy.py b/src/etc/tidy.py 2index 9f5f919..a607180 100644 3--- a/src/etc/tidy.py 4+++ b/src/etc/tidy.py 5@@ -66,13 +66,9 @@ def interesting_file(f): 6 return any(os.path.splitext(f)[1] == ext for ext in interesting_files) 7 8 9-# Be careful to support Python 2.4, 2.6, and 3.x here! 10-config_proc = subprocess.Popen(["git", "config", "core.autocrlf"], 11- stdout=subprocess.PIPE) 12-result = config_proc.communicate()[0] 13 14 true = "true".encode('utf8') 15-autocrlf = result.strip() == true if result is not None else False 16+autocrlf = False 17 18 current_name = "" 19 current_contents = ""