URI: 
       tcosigner pool: exec_->show - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit c46ac26d828f336a8dc06dbae3a37325c58370af
   DIR parent 42084a3610fb147aba260710fb409ccb35707751
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Fri, 12 Jun 2015 10:44:49 +0200
       
       cosigner pool: exec_->show
       
       Diffstat:
         M plugins/cosigner_pool.py            |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/plugins/cosigner_pool.py b/plugins/cosigner_pool.py
       t@@ -149,6 +149,7 @@ class Plugin(BasePlugin):
                    try:
                        server.put(_hash, message)
                    except Exception as e:
       +                traceback.print_exc(file=sys.stdout)
                        self.win.show_message(str(e))
                        return
                self.win.show_message("Your transaction was sent to the cosigning pool.\nOpen your cosigner wallet to retrieve it.")
       t@@ -181,4 +182,4 @@ class Plugin(BasePlugin):
                tx = transaction.Transaction(message)
                d = transaction_dialog.TxDialog(tx, self.win)
                d.saved = False
       -        d.exec_()
       +        d.show()