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.
This commit is contained in:
dabura667 2014-02-26 22:21:51 +09:00
parent bb859c244b
commit 9750433bfc
1 changed files with 1 additions and 0 deletions

View File

@ -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 = ""