On Sun, Dec 21, 2008 at 7:29 PM, David <da...@abbottdavid.com> wrote: > This seems to work; > > download = L.readline() > print download > download = download[0:-1] > > What is that last character that is added; > .mp3%0A
It is a newline character (line feed). readline() includes the line endings in the returned lines. Try download = L.readline().rstrip() Kent _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor