Try repeatedly writing something like

"\r                                  \rBytes Transferred So Far %d" \
      % count

Rather than backing up twice with \r, I'd just suggest

  "\rBytes Transferred So Far %d           " % count

or even

  "\rBytes Transferred So Far %d%s" % (count, ' '*20)

-tkc




--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to