Revert test-failing change from #1114

This commit is contained in:
Justin Mayer 2014-02-09 08:45:06 -08:00
commit 6b0a99932f

View file

@ -112,7 +112,7 @@ def get_items(xml):
sys.exit(error)
with open(xml, encoding='utf-8') as infile:
xmlfile = infile.read()
soup = BeautifulSoup(xmlfile, "lxml")
soup = BeautifulSoup(xmlfile, "xml")
items = soup.rss.channel.findAll('item')
return items