electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit afbf766d898d7e923a41f68a11cbc5728beb4604
parent 3d42193223f89fa2ac4a26a0e4c7bf04a06e4152
Author: ThomasV <thomasv@electrum.org>
Date:   Thu,  4 Feb 2016 20:35:35 +0100

kivy i18n: catch more exeptions

Diffstat:
Mgui/kivy/i18n.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/kivy/i18n.py b/gui/kivy/i18n.py @@ -41,5 +41,5 @@ class _(str): for label in _.observers: try: label.text = _(label.text.source_text) - except ReferenceError: + except: pass