URI: 
       tfix parse_url in android gui - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 5397142fe00f017ceca1acfd35720dd51c18f282
   DIR parent d09d4e4055b687cf7afacff09f864ec0785472f7
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Thu, 11 Apr 2013 10:11:59 +0200
       
       fix parse_url in android gui
       
       Diffstat:
         M gui/gui_android.py                  |       5 +++--
       
       1 file changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/gui/gui_android.py b/gui/gui_android.py
       t@@ -22,6 +22,7 @@
        import android
        
        from electrum import SimpleConfig, Interface, WalletSynchronizer, Wallet, format_satoshis, mnemonic_encode, mnemonic_decode, is_valid
       +from electrum import util
        from decimal import Decimal
        import datetime, re
        
       t@@ -483,7 +484,7 @@ def make_new_contact():
                data = r['extras']['SCAN_RESULT']
                if data:
                    if re.match('^bitcoin:', data):
       -                address, _, _, _, _, _, _ = wallet.parse_url(data, None, lambda x: modal_question('Question',x))
       +                address, _, _, _, _, _, _ = util.parse_url(data)
                    elif is_valid(data):
                        address = data
                    else:
       t@@ -615,7 +616,7 @@ def payto_loop():
                            data = r['extras']['SCAN_RESULT']
                            if data:
                                if re.match('^bitcoin:', data):
       -                            payto, amount, label, _, _, _, _ = wallet.parse_url(data, None, lambda x: modal_question('Question', x))
       +                            payto, amount, label, _, _, _, _ = util.parse_url(data)
                                    droid.fullSetProperty("recipient", "text",payto)
                                    droid.fullSetProperty("amount", "text", amount)
                                    droid.fullSetProperty("label", "text", label)