From 6a9e89b0cb0c0a05a42c5896d69d0ad9e985bcd5 Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Sun, 15 Feb 2015 12:07:34 +0100
Subject: [PATCH] Fixed issue #61

---
 src/cutecoin/gui/process_cfg_community.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cutecoin/gui/process_cfg_community.py b/src/cutecoin/gui/process_cfg_community.py
index a841d9f1..a8b3e580 100644
--- a/src/cutecoin/gui/process_cfg_community.py
+++ b/src/cutecoin/gui/process_cfg_community.py
@@ -170,7 +170,7 @@ class ProcessConfigureCommunity(QDialog, Ui_CommunityConfigurationDialog):
         server = self.lineedit_server.text()
         port = self.spinbox_port.value()
         try:
-            peer_data = bma.network.Peering(ConnectionHandler(server, port))
+            peer_data = bma.network.Peering(ConnectionHandler(server, port)).get()
 
             peer = Peer.from_signed_raw("{0}{1}\n".format(peer_data['raw'],
                                                       peer_data['signature']))
-- 
GitLab