commit | b6fd5a50b06314013e5a97cec40a681bcab3deb7 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Oct 07 14:55:39 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Oct 07 14:55:39 1997 +0000 |
tree | e19d1adb201eeb9e6290698472c3d5d9758b2be1 | |
parent | 8731e5c35f26bfb34da454e4da673051a4bcbe48 [diff] [blame] |
Add "set -e" to lock command.
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index 5ceb2f9..26379cc 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py
@@ -806,7 +806,7 @@ f.close() command = interpolate( - SH_LOCK + '\n' + SH_CHECKIN, + "set -e\n" + SH_LOCK + '\n' + SH_CHECKIN, file=file, tfn=tfn) p = os.popen(command)