summaryrefslogtreecommitdiff
path: root/ofxparse/ofxparse.py
diff options
context:
space:
mode:
authorAndrew Shadura <andrewsh@debian.org>2016-10-19 18:40:41 +0200
committerAndrew Shadura <andrewsh@debian.org>2016-10-19 18:40:41 +0200
commit5c6e16a16a2d7c17188cfe6bcccdf62f276c203c (patch)
tree705fe67c540d7948655c94848a25a490a3568a7d /ofxparse/ofxparse.py
parent1e93f16b2d0eb0b9e4db42ac6c376ebf01290c2f (diff)
Bring the patch for #818132 back, upstream's code is still broken.debian/0.15-3
Diffstat (limited to 'ofxparse/ofxparse.py')
-rw-r--r--ofxparse/ofxparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ofxparse/ofxparse.py b/ofxparse/ofxparse.py
index 5686030..af93ae9 100644
--- a/ofxparse/ofxparse.py
+++ b/ofxparse/ofxparse.py
@@ -46,7 +46,7 @@ def soup_maker(fh):
skip_headers(fh)
try:
from bs4 import BeautifulSoup
- soup = BeautifulSoup(fh, "xml")
+ soup = BeautifulSoup(fh, "lxml")
for tag in soup.findAll():
tag.name = tag.name.lower()
except ImportError: