URI: 
       tfix issue #1387 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 252c73a06a9a58fcd4b2039e0fbe27705c7c365a
   DIR parent 43880d452e9c0278ff114625d7871b06051647a0
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Wed,  5 Aug 2015 18:01:56 +0200
       
       fix issue #1387
       
       Diffstat:
         M gui/qt/main_window.py               |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -2480,6 +2480,9 @@ class ElectrumWindow(QMainWindow):
        
                fee = self.wallet.fee_per_kb(self.config)
                tx = Transaction.sweep(get_pk(), self.network, get_address(), fee)
       +        if not tx:
       +            self.show_message(_('No inputs found. (Note that inputs need to be confirmed)'))
       +            return
                self.show_transaction(tx)