From: Guido van Rossum Date: Tue, 7 Oct 1997 14:55:39 +0000 (+0000) Subject: Add "set -e" to lock command. X-Git-Tag: v1.5a4~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6fd5a50b06314013e5a97cec40a681bcab3deb7;p=thirdparty%2FPython%2Fcpython.git Add "set -e" to lock command. --- diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index 5ceb2f93085e..26379ccbf9a4 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py @@ -806,7 +806,7 @@ class FaqWizard: 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)