From: ThomasV Date: Wed, 7 May 2014 16:34:00 +0000 (+0200) Subject: fix parse_url X-Git-Url: https://git.novaco.in/?p=electrum-nvc.git;a=commitdiff_plain;h=e8a5070948bd9d0dfea0e1e26489ccec20d80627 fix parse_url --- diff --git a/lib/util.py b/lib/util.py index c2c995f..10faf9d 100644 --- 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)