commit b0311885a55365944794a345b65225101b9c4c65
parent fa7fba53fcb11a5f4d17c081182e1c792c889ada
Author: ThomasV <thomasv@electrum.org>
Date:   Mon, 25 Jan 2016 12:37:59 +0100
kivy: fix unicode bug
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/gui/kivy/main.kv b/gui/kivy/main.kv
@@ -309,9 +309,7 @@ BoxLayout:
                 bold: True
                 markup: True
                 color: 1, 1, 1, 1
-                text:
-                    "[color=#777777]{}[/color]"\
-                    .format(app.status)
+                text: "[color=#777777]"+app.status+"[/color]"
                 font_size: '22dp'
                 minimum_width: '1dp'
                 on_release: app.popup_dialog('status')