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

--- a/ofxparse/ofxparse.py
+++ b/ofxparse/ofxparse.py
@@ -28,7 +28,7 @@
         return BeautifulSoup(fh)
     except ImportError:
         from BeautifulSoup import BeautifulStoneSoup
-        return BeautifulStoneSoup(fh)
+        return BeautifulStoneSoup(fh, "lxml")
 
 
 def try_decode(string, encoding):