Be more careful to avoid spurious output from the shell script that
unpacks the development version of the docs on SF.
diff --git a/Doc/tools/update-docs.sh b/Doc/tools/update-docs.sh
index a996461..b3b48ba 100755
--- a/Doc/tools/update-docs.sh
+++ b/Doc/tools/update-docs.sh
@@ -21,7 +21,11 @@
     cd devel-docs || exit $?
     (bzip2 -dc "$UPDATES" | tar xf -) || exit $?
     rm "$UPDATES" || exit $?
-    EXPLANATION="`cat $INFO`"
+    if [ -f "$INFO" ] ; then
+        EXPLANATION="`cat $INFO`"
+    else
+        EXPLANATION=''
+    fi
     Mail -s '[development doc updates]' \
      python-dev@python.org doc-sig@python.org \
      <<EOF