electrum

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

commit e8a5070948bd9d0dfea0e1e26489ccec20d80627
parent 0149ec5921c88513ce0bbb53cf0d8f2fa52cce13
Author: ThomasV <thomasv@gitorious>
Date:   Wed,  7 May 2014 18:34:00 +0200

fix parse_url

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

diff --git a/lib/util.py b/lib/util.py @@ -173,7 +173,7 @@ def parse_url(url): if len(v)!=1: raise Exception('Duplicate Key', k) - amount = label = message = '' + amount = label = message = request_url = '' if 'amount' in pq: am = pq['amount'][0] m = re.match('([0-9\.]+)X([0-9])', am)