tfix: misplaced repr - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 33031f387c291b0423d27beca0992a63fac8398e DIR parent bed6e938a3990d89ae4d822966c3eb5e327634e5 HTML Author: thomasv <thomasv@gitorious> Date: Fri, 7 Dec 2012 14:52:55 +0100 fix: misplaced repr Diffstat: M lib/wallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -777,9 +777,9 @@ class Wallet: outputs = self.add_tx_change(outputs, amount, fee, total, change_addr) if not self.seed: - return {'inputs':inputs, 'outputs':outputs} + return repr({'inputs':inputs, 'outputs':outputs}) - tx = repr(self.signed_tx(inputs, outputs, password)) + tx = self.signed_tx(inputs, outputs, password) for address, x in outputs: if address not in self.addressbook and not self.is_mine(address):