summaryrefslogtreecommitdiff
path: root/dealconvert/formats/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'dealconvert/formats/html.py')
-rw-r--r--dealconvert/formats/html.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/dealconvert/formats/html.py b/dealconvert/formats/html.py
index 4185c40..efb16ff 100644
--- a/dealconvert/formats/html.py
+++ b/dealconvert/formats/html.py
@@ -1,6 +1,9 @@
from collections import OrderedDict
+import sys
import warnings
+import chardet
+
from bcdd.BCalcWrapper import BCalcWrapper
from bcdd.DDTable import DDTable
from bcdd.Exceptions import FieldNotFoundException
@@ -181,6 +184,7 @@ class HTMLFormat(BinaryFormat):
def get_html_content(self, dealset):
deal_rows = []
event_name = dealset[0].event
+ event_name = event_name.decode(chardet.detect(event_name)['encoding'])
while len(dealset) > 0:
deal_rows.append(dealset[0:self.deals_per_column])
dealset = dealset[self.deals_per_column:]