commit | ca2f69cb965e98c811cf4d761e69f15cf77f6fdb | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Nov 11 17:17:55 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Nov 11 17:17:55 1997 +0000 |
tree | df0815072827e49cb81e9a1ecc7146d96c282529 | |
parent | 6f5a312cec96bf049b6160785708355c152d8446 [diff] [blame] |
As Mark Hammond found out, it was a bad idea to add "set -e" to the check in command -- this fails for new files!
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index 26379cc..5ceb2f9 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py
@@ -806,7 +806,7 @@ f.close() command = interpolate( - "set -e\n" + SH_LOCK + '\n' + SH_CHECKIN, + SH_LOCK + '\n' + SH_CHECKIN, file=file, tfn=tfn) p = os.popen(command)