From de539f27f7bdc2bf996d2449c92dc82c6ba2a150 Mon Sep 17 00:00:00 2001 From: Inso <insomniak.fr@gmail.com> Date: Thu, 24 Sep 2015 19:25:49 +0200 Subject: [PATCH] Correction de bug du wot_tab --- src/cutecoin/gui/wot_tab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cutecoin/gui/wot_tab.py b/src/cutecoin/gui/wot_tab.py index ae740ce3..a2eab791 100644 --- a/src/cutecoin/gui/wot_tab.py +++ b/src/cutecoin/gui/wot_tab.py @@ -232,7 +232,7 @@ class WotTabWidget(QWidget, Ui_WotTabWidget): """ Reset graph scene to wallet identity """ - if self.account: + if self.account and self.community: identity = yield from self.account.identity(self.community) self.draw_graph(identity) -- GitLab