From 6b0a99932fc6d1be9f22e0fd4fa3321f4344ad0f Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Sun, 9 Feb 2014 08:45:06 -0800 Subject: [PATCH] Revert test-failing change from #1114 --- pelican/tools/pelican_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/tools/pelican_import.py b/pelican/tools/pelican_import.py index 940849d8..b04906c0 100755 --- a/pelican/tools/pelican_import.py +++ b/pelican/tools/pelican_import.py @@ -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