tkivy i18n: catch more exeptions - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit afbf766d898d7e923a41f68a11cbc5728beb4604 DIR parent 3d42193223f89fa2ac4a26a0e4c7bf04a06e4152 HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 4 Feb 2016 20:35:35 +0100 kivy i18n: catch more exeptions Diffstat: M gui/kivy/i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/kivy/i18n.py b/gui/kivy/i18n.py t@@ -41,5 +41,5 @@ class _(str): for label in _.observers: try: label.text = _(label.text.source_text) - except ReferenceError: + except: pass