URI: 
       tmessage reformatting - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit b7555240efd78ba437764ea9519df36c54aa651d
   DIR parent 578a83fa30cb9368d50c9c9fb84001a4a6e9354b
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu, 27 Aug 2015 08:24:49 +0200
       
       message reformatting
       
       Diffstat:
         M gui/qt/main_window.py               |       6 +++++-
       
       1 file changed, 5 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -1295,7 +1295,11 @@ class ElectrumWindow(QMainWindow):
                else:
                    confirm_fee = self.config.get('confirm_fee', 100000)
                    if fee >= confirm_fee:
       -                if not self.question(_("The fee for this transaction seems unusually high.\nAre you really sure you want to pay %(fee)s in fees?")%{ 'fee' : self.format_amount(fee) + ' '+ self.base_unit()}):
       +                msg = '\n'.join([
       +                    _("The fee for this transaction seems unusually high."),
       +                    _("Are you really sure you want to pay %(fee)s in fees?")%{ 'fee' : self.format_amount(fee) + ' '+ self.base_unit()}
       +                ])
       +                if not self.question(msg):
                            return
        
                if self.show_before_broadcast():