From 9750433bfc357e4dec4b0d9dfe2d449d81f66e8c Mon Sep 17 00:00:00 2001 From: dabura667 Date: Wed, 26 Feb 2014 22:21:51 +0900 Subject: [PATCH] Changed CSV History export to UTF-8 labels Japanese characters were causing history to be aborted halfway through export, so by changing the label to UTF-8 I was able to export the CSV properly. --- gui/qt/lite_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/qt/lite_window.py b/gui/qt/lite_window.py index 68867431..c542306d 100644 --- a/gui/qt/lite_window.py +++ b/gui/qt/lite_window.py @@ -122,6 +122,7 @@ def csv_transaction(wallet): if tx_hash: label, is_default_label = wallet.get_label(tx_hash) + label = label.encode('utf-8') else: label = ""