From: Guido van Rossum Date: Tue, 11 Nov 1997 17:17:55 +0000 (+0000) Subject: As Mark Hammond found out, it was a bad idea to add "set -e" to the X-Git-Tag: v1.5b1~106 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca2f69cb965e98c811cf4d761e69f15cf77f6fdb;p=thirdparty%2FPython%2Fcpython.git 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 26379ccbf9a4..5ceb2f93085e 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py @@ -806,7 +806,7 @@ class FaqWizard: 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)