From a84f0acc52e5555a56d506733d20e991d7c9c307 Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Mon, 12 Oct 2015 20:40:08 +0200
Subject: [PATCH] Fix missing NoPeerAvailable exception

---
 src/cutecoin/gui/community_view.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/cutecoin/gui/community_view.py b/src/cutecoin/gui/community_view.py
index 590216ce..e26e70ba 100644
--- a/src/cutecoin/gui/community_view.py
+++ b/src/cutecoin/gui/community_view.py
@@ -185,6 +185,8 @@ class CommunityWidget(QWidget, Ui_CommunityWidget):
 
         except MembershipNotFoundError as e:
             pass
+        except NoPeerAvailable:
+            logging.debug("No peer available")
         self.refresh_data()
 
     def refresh_data(self):
-- 
GitLab