aboutsummaryrefslogtreecommitdiff
path: root/contrib/removetrailingwhitespace
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/removetrailingwhitespace')
-rwxr-xr-xcontrib/removetrailingwhitespace14
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/removetrailingwhitespace b/contrib/removetrailingwhitespace
deleted file mode 100755
index 9e620cbb2..000000000
--- a/contrib/removetrailingwhitespace
+++ /dev/null
@@ -1,14 +0,0 @@
1#!/usr/bin/python
2
3import sys
4import re
5
6for fileName in sys.argv[1:]:
7 f = open(fileName, 'r+')
8 fileString = f.read()
9
10 fileString = re.sub(r'[ ]+\n', r'\n', fileString)
11 fileString = re.sub(r'\r', r'', fileString)
12 f.seek(0)
13 f.write(fileString)
14 f.truncate(len(fileString))