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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6fd5a50b06314013e5a97cec40a681bcab3deb7;p=python Add "set -e" to lock command. --- diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index 5ceb2f9308..26379ccbf9 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)