diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-05-13 21:13:19 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-05-13 21:13:22 +0200 |
commit | 1d9fe3553e54930cce10dce465fe6437fb638264 (patch) | |
tree | 014c18360302731aea488b15bf3f941e6277c33c /examples | |
parent | fe66c022adf914169d4fd378099ac843994c0567 (diff) | |
download | slixmpp-1d9fe3553e54930cce10dce465fe6437fb638264.tar.gz slixmpp-1d9fe3553e54930cce10dce465fe6437fb638264.tar.bz2 slixmpp-1d9fe3553e54930cce10dce465fe6437fb638264.tar.xz slixmpp-1d9fe3553e54930cce10dce465fe6437fb638264.zip |
examples: Use the existing get_node_config function.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/pubsub_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pubsub_client.py b/examples/pubsub_client.py index 6f59380d..c5de2cf1 100755 --- a/examples/pubsub_client.py +++ b/examples/pubsub_client.py @@ -67,7 +67,7 @@ class PubsubClient(slixmpp.ClientXMPP): def get_configure(self): try: - configuration_form = yield from self['xep_0060'].get_configure_form(self.pubsub_server, self.node) + 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) except XMPPError as error: logging.error('Could not retrieve configure form from node %s: %s', self.node, error.format()) |