commit 19864856235a894adb43222bb464e62c7bb3951d
parent 7f37c093b664e813b7a12d37f88ec93e565c212e
Author: ecdsa <ecdsa@github>
Date: Mon, 8 Apr 2013 16:06:56 +0200
spacing
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/gui_classic.py b/gui/gui_classic.py
@@ -424,7 +424,7 @@ class ElectrumWindow(QMainWindow):
else:
c, u = self.wallet.get_account_balance(self.current_account)
text = _( "Balance" ) + ": %s "%( self.format_amount(c) ) + self.base_unit()
- if u: text += "[%s unconfirmed]"%( self.format_amount(u,True).strip() )
+ if u: text += " [%s unconfirmed]"%( self.format_amount(u,True).strip() )
text += self.create_quote_text(Decimal(c+u)/100000000)
icon = QIcon(":icons/status_connected.png")
else: