]> granicus.if.org Git - python/commitdiff
As Mark Hammond found out, it was a bad idea to add "set -e" to the
authorGuido van Rossum <guido@python.org>
Tue, 11 Nov 1997 17:17:55 +0000 (17:17 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 11 Nov 1997 17:17:55 +0000 (17:17 +0000)
check in command -- this fails for new files!

Tools/faqwiz/faqwiz.py

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