summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-11-11 17:17:55 (GMT)
committerGuido van Rossum <guido@python.org>1997-11-11 17:17:55 (GMT)
commitca2f69cb965e98c811cf4d761e69f15cf77f6fdb (patch)
treedf0815072827e49cb81e9a1ecc7146d96c282529 /Tools
parent6f5a312cec96bf049b6160785708355c152d8446 (diff)
downloadcpython-ca2f69cb965e98c811cf4d761e69f15cf77f6fdb.zip
cpython-ca2f69cb965e98c811cf4d761e69f15cf77f6fdb.tar.gz
cpython-ca2f69cb965e98c811cf4d761e69f15cf77f6fdb.tar.bz2
As Mark Hammond found out, it was a bad idea to add "set -e" to the
check in command -- this fails for new files!
Diffstat (limited to 'Tools')
-rw-r--r--Tools/faqwiz/faqwiz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py
index 26379cc..5ceb2f9 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)