From 6ccae48f7c29f85a748a4aab11d8b95e2ae1f62c Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 25 Oct 2014 00:35:18 +0900 Subject: [PATCH] man2rst.py: Add "DO NOT MODIFY THIS FILE!" comment --- man2rst.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/man2rst.py b/man2rst.py index 90e5f850..ae7c79bd 100755 --- a/man2rst.py +++ b/man2rst.py @@ -8,6 +8,9 @@ def man2rst(f): expect_arg = False in_arg = False + sys.stdout.write('.. DO NOT MODIFY THIS FILE! ' + 'It was generated by man2rst.py\n\n') + for line in f: line = line.rstrip()