]> granicus.if.org Git - python/commitdiff
Add "set -e" to lock command.
authorGuido van Rossum <guido@python.org>
Tue, 7 Oct 1997 14:55:39 +0000 (14:55 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 7 Oct 1997 14:55:39 +0000 (14:55 +0000)
Tools/faqwiz/faqwiz.py

index 5ceb2f93085e18e160fb5796de8073cc918a0677..26379ccbf9a454fbe0433082449917865dd37dbf 100644 (file)
@@ -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)