As Mark Hammond found out, it was a bad idea to add "set -e" to the

check in command -- this fails for new files!
This commit is contained in:
Guido van Rossum 1997-11-11 17:17:55 +00:00
parent 6f5a312cec
commit ca2f69cb96

View 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)