URI: 
       tfix: wrong variable name fee_e - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 39274ea10e5e04bd0f420a92093d44af9fc50ee3
   DIR parent 771f953014332a0a414ba8cf82670e288e3024b6
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu, 12 Jun 2014 09:29:46 +0200
       
       fix: wrong variable name fee_e
       
       Diffstat:
         M gui/qt/main_window.py               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -2302,7 +2302,7 @@ class ElectrumWindow(QMainWindow):
                # run the dialog
                if not d.exec_(): return
        
       -        fee = self.fee_e.get_amount()
       +        fee = fee_e.get_amount()
                if fee is None:
                    QMessageBox.warning(self, _('Error'), _('Invalid value') +': %s'%fee, _('OK'))
                    return