From d146ce9fb6aec1eae0a1d6671945eb6fa03fabef Mon Sep 17 00:00:00 2001
From: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
Date: Sun, 13 May 2018 21:26:47 +0200
Subject: examples: Display only the form, and not the entire stanza.

---
 examples/pubsub_client.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'examples')

diff --git a/examples/pubsub_client.py b/examples/pubsub_client.py
index c072bee1..9a1d4bb6 100755
--- a/examples/pubsub_client.py
+++ b/examples/pubsub_client.py
@@ -68,7 +68,7 @@ class PubsubClient(slixmpp.ClientXMPP):
     def get_configure(self):
         try:
             configuration_form = yield from self['xep_0060'].get_node_config(self.pubsub_server, self.node)
-            logging.info('Configure form received from node %s: %s', self.node, configuration_form)
+            logging.info('Configure form received from node %s: %s', self.node, configuration_form['pubsub_owner']['configure']['form'])
         except XMPPError as error:
             logging.error('Could not retrieve configure form from node %s: %s', self.node, error.format())
 
-- 
cgit v1.2.3