diff options
author | Lance Stout <lancestout@gmail.com> | 2013-02-22 10:08:35 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-02-22 10:08:35 -0800 |
commit | a1d71d31e85df2cf6efc835c30592126ca9861f2 (patch) | |
tree | f873e2610061011308f38baff46dac54316e11bb /docs | |
parent | 766e0b685d7d13adbcaa6e475c03b3ba96c196b2 (diff) | |
parent | 58f5e4702b143208bc80f8a507b358f2c2b1745d (diff) | |
download | slixmpp-a1d71d31e85df2cf6efc835c30592126ca9861f2.tar.gz slixmpp-a1d71d31e85df2cf6efc835c30592126ca9861f2.tar.bz2 slixmpp-a1d71d31e85df2cf6efc835c30592126ca9861f2.tar.xz slixmpp-a1d71d31e85df2cf6efc835c30592126ca9861f2.zip |
Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop
Diffstat (limited to 'docs')
-rw-r--r-- | docs/create_plugin.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/create_plugin.rst b/docs/create_plugin.rst index 12efa84c..2b0514b8 100644 --- a/docs/create_plugin.rst +++ b/docs/create_plugin.rst @@ -222,7 +222,7 @@ handler function to process registration requests. self.description = "In-Band Registration" self.xep = "0077" - self.xmpp.registerHandler( + self.xmpp.register_handler( Callback('In-Band Registration', MatchXPath('{%s}iq/{jabber:iq:register}query' % self.xmpp.default_ns), self.__handleRegistration)) @@ -601,7 +601,7 @@ with some additional registration fields implemented. self.form_instructions = "" self.backend = UserStore() - self.xmpp.registerHandler( + self.xmpp.register_handler( Callback('In-Band Registration', MatchXPath('{%s}iq/{jabber:iq:register}query' % self.xmpp.default_ns), self.__handleRegistration)) |