Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ca2f69c

Browse files
committed
As Mark Hammond found out, it was a bad idea to add "set -e" to the
check in command -- this fails for new files!
1 parent 6f5a312 commit ca2f69c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/faqwiz/faqwiz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ def commit(self, entry):
806806
f.close()
807807

808808
command = interpolate(
809-
"set -e\n" + SH_LOCK + '\n' + SH_CHECKIN,
809+
SH_LOCK + '\n' + SH_CHECKIN,
810810
file=file, tfn=tfn)
811811

812812
p = os.popen(command)

0 commit comments

Comments
 (0)