diff options
Diffstat (limited to 'dist/s_python')
-rwxr-xr-x | dist/s_python | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dist/s_python b/dist/s_python index ce955328288..b8aa5848637 100755 --- a/dist/s_python +++ b/dist/s_python @@ -2,7 +2,7 @@ # Python style checks. t=__wt.$$ -trap 'rm -f $t; exit 0' 0 1 2 3 13 15 +trap 'rm -f $t' 0 1 2 3 13 15 cd .. @@ -25,3 +25,5 @@ test -s $t && { echo 'trailing semi-colons in selected Python code:' cat $t } + +exit 0 |