>
> I'm having some parser errors and came across this note. Maybe it's
> causing the problem you're experiencing...
>
> http://www.crummy.com/software/BeautifulSoup/3.1-problems.html
>
> In short, maybe you are using 3.0+ parser on your windows machine
> while using an older version on your linux machines. This link
> explains the problem and your option to make it work again is to
> downgrade to an earlier version and run in python 2.6 or earlier....
> no python 3.0 which dropped the SGML parser older versions used.
While part of this may be valid, I made the same mistake.
< 3.0 uses old Python 2.x SGML parser
3.1+ uses newer, less forgiving (but available in Python 3) parser
S