summaryrefslogtreecommitdiff
path: root/debian/patches/explicit-lxml
blob: bb49ab391990fa5287d9a4203497ce5df9e36001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
bug#818132

--- a/ofxparse/ofxparse.py
+++ b/ofxparse/ofxparse.py
@@ -46,7 +46,7 @@
     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: