diff options
author | Guido van Rossum <guido@python.org> | 1997-11-11 17:17:55 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-11-11 17:17:55 (GMT) |
commit | ca2f69cb965e98c811cf4d761e69f15cf77f6fdb (patch) | |
tree | df0815072827e49cb81e9a1ecc7146d96c282529 | |
parent | 6f5a312cec96bf049b6160785708355c152d8446 (diff) | |
download | cpython-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!
-rw-r--r-- | Tools/faqwiz/faqwiz.py | 2 |
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) |