URI: 
       tfix: follow up to ba269963674d5b52bea3f544743bcafe70e87a3b - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 2990b1e86568cb3787cba63edd5f1962a0d0e043
   DIR parent ba269963674d5b52bea3f544743bcafe70e87a3b
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Tue, 15 Dec 2015 12:33:36 +0100
       
       fix: follow up to ba269963674d5b52bea3f544743bcafe70e87a3b
       
       Diffstat:
         M gui/kivy/uix/screens.py             |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/kivy/uix/screens.py b/gui/kivy/uix/screens.py
       t@@ -137,7 +137,8 @@ class HistoryScreen(CScreen):
                    rate = run_hook('history_rate', date)
                    if self.app.fiat_unit:
                        quote_text = "..." if rate is None else "{0:.3} {1}".format(Decimal(value) / 100000000 * Decimal(rate), self.app.fiat_unit)
       -
       +            else:
       +                quote_text = ''
                    yield (conf, icon, time_str, label, value, tx_hash, quote_text)
        
            def update(self, see_all=False):