summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/explicit-lxml13
-rw-r--r--debian/patches/series1
2 files changed, 14 insertions, 0 deletions
diff --git a/debian/patches/explicit-lxml b/debian/patches/explicit-lxml
new file mode 100644
index 0000000..bb49ab3
--- /dev/null
+++ b/debian/patches/explicit-lxml
@@ -0,0 +1,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:
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..ae721d3
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+explicit-lxml