clarify discussion of iteration in the section on the "for" statement
(SF bug #829073)
diff --git a/Doc/tools/push-docs.sh b/Doc/tools/push-docs.sh
index dfccb5b..4a71b7a 100755
--- a/Doc/tools/push-docs.sh
+++ b/Doc/tools/push-docs.sh
@@ -11,6 +11,7 @@
 TARGET="$TARGETHOST:$TARGETDIR"
 
 ADDRESSES='python-dev@python.org doc-sig@python.org python-list@python.org'
+ADDRESSES=fdrake01@comcast.net
 
 TOOLDIR="`dirname $0`"
 VERSION=`$TOOLDIR/getversioninfo`
@@ -32,7 +33,7 @@
 getopt -T >/dev/null
 if [ $? -eq 4 ] ; then
     # We have a sufficiently useful getopt(1) implementation.
-    set -- `getopt -ssh m:p:qt:F: "$@"`
+    eval "set -- `getopt -ssh m:p:qt:F: \"$@\"`"
 else
     # This version of getopt doesn't support quoting of long options
     # with spaces, so let's not rely on it at all.