electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 0f3c5ad4b1cbd1eb4e8d94ea4053d09d2cfce14f
parent 5e41c99d8de5f62b58dcb77f26bcdf17bf76c1cc
Author: ThomasV <thomasv@gitorious>
Date:   Wed, 25 Feb 2015 21:13:59 +0100

parse_URI: utf8 decode

Diffstat:
Mlib/util.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/util.py b/lib/util.py @@ -174,7 +174,7 @@ def parse_URI(uri): else: amount = Decimal(am) * 100000000 if 'message' in pq: - message = pq['message'][0] + message = pq['message'][0].decode('utf8') if 'label' in pq: label = pq['label'][0] if 'r' in pq: