From c20c85f5f64c79fde4ccf983f2414823e6f960d7 Mon Sep 17 00:00:00 2001 From: emkael Date: Sat, 5 Sep 2015 23:58:06 +0200 Subject: * traveller encoding fix --- bidding_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bidding_data.py b/bidding_data.py index 3394aeb..3373ca4 100644 --- a/bidding_data.py +++ b/bidding_data.py @@ -251,7 +251,7 @@ class JFRBidding: board_text_path = path.splitext(tournament_file)[0] + '.txt' with file(board_text_path, 'r+') as board_text: board_text_content = bs4( - board_text, 'lxml', from_encoding='iso-8859-2') + board_text, 'lxml') for row in board_text_content.select('tr'): cells = row.select('td') # traveller table rows for specific score entries @@ -284,7 +284,7 @@ class JFRBidding: cells[3].append(bidding_link) board_text.seek(0) board_text.write(board_text_content.table.prettify( - 'iso-8859-2', formatter='html')) + 'utf-8', formatter='html')) board_text.truncate() for unused_file in self.__bidding_files: remove(unused_file) -- cgit v1.2.3