diff options
-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()) |