diff options
author | Lance Stout <lancestout@gmail.com> | 2012-01-24 00:07:31 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-01-24 00:07:31 -0800 |
commit | 69940a8ab9f74e04d46cf6f7e6359cb1a58766f5 (patch) | |
tree | a36e7b2e4136fb2d3af2561b4efbaca758104a19 /examples/thirdpary_auth.py | |
parent | 13158e3cdfc846d03e5698a9e507b7b5c426bfd6 (diff) | |
download | slixmpp-69940a8ab9f74e04d46cf6f7e6359cb1a58766f5.tar.gz slixmpp-69940a8ab9f74e04d46cf6f7e6359cb1a58766f5.tar.bz2 slixmpp-69940a8ab9f74e04d46cf6f7e6359cb1a58766f5.tar.xz slixmpp-69940a8ab9f74e04d46cf6f7e6359cb1a58766f5.zip |
Fix a few typos.
Diffstat (limited to 'examples/thirdpary_auth.py')
-rw-r--r-- | examples/thirdpary_auth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/thirdpary_auth.py b/examples/thirdpary_auth.py index 734b1381..727311ae 100644 --- a/examples/thirdpary_auth.py +++ b/examples/thirdpary_auth.py @@ -212,14 +212,14 @@ if __name__ == '__main__': xmpp.credentials['access_token'] = access_token # The credentials dictionary is used to provide additional authentication - # beyond just a password. + # information beyond just a password. xmpp.register_plugin('xep_0030') # Service Discovery xmpp.register_plugin('xep_0004') # Data Forms xmpp.register_plugin('xep_0060') # PubSub # MSN will kill connections that have been inactive for even - # short periods of time. So use pings to keep the session alive, + # short periods of time. So use pings to keep the session alive; # whitespace keepalives do not work. xmpp.register_plugin('xep_0199', {'keepalive': True, 'frequency': 60}) |