For a work-around do this:
Replace the line:
print s.find("img", src="notanimage")
with:
print s.find("img", attrs={"src":"notanimage"})
I found this from reading the changelog at:
http://www.crummy.com/software/BeautifulSoup/CHANGELOG.html
the fix was put into BeautifulSoup 3.0.2, the changelog entry for this is:
Fixed a bug where the findAll method wasn't passing along any keyword
arguments.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]