summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/reindent-rst.py
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/reindent-rst.py')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/reindent-rst.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/reindent-rst.py b/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/reindent-rst.py
new file mode 100644
index 0000000000..037f045441
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/reindent-rst.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
+# Make a reST file compliant to our pre-commit hook.
+# Currently just remove trailing whitespace.
+
+import sys
+
+import patchcheck
+
+def main(argv=sys.argv):
+ patchcheck.normalize_docs_whitespace(argv[1:])
+
+if __name__ == '__main__':
+ sys.exit(main())