URI: 
       tfix #2298 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 96c861919433fec9c2023459c057805e24c0479c
   DIR parent b2ff7259e6554770a15048c64ed05fca340cef17
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 15 Mar 2017 06:12:26 +0100
       
       fix #2298
       
       Diffstat:
         M lib/commands.py                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/commands.py b/lib/commands.py
       t@@ -272,7 +272,7 @@ class Commands:
                """Get private keys of addresses. You may pass a single wallet address, or a list of wallet addresses."""
                if is_address(address):
                    return self.wallet.get_private_key(address, self._password)
       -        domain = json_loads(address)
       +        domain = address
                return [self.wallet.get_private_key(address, self._password) for address in domain]
        
            @command('w')