diff options
author | Lance Stout <lancestout@gmail.com> | 2011-12-20 12:30:35 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-12-20 12:30:35 -0500 |
commit | fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad (patch) | |
tree | adaceed18d40cc28c64ded1e4364899e3cff8aa5 /sleekxmpp/plugins | |
parent | 74e7e5a29194f7d0c382c7b5a9d0bc7127d431c6 (diff) | |
download | slixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.tar.gz slixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.tar.bz2 slixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.tar.xz slixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.zip |
Add comma to fix pubsub error conditions.
Fixes issue #127
Diffstat (limited to 'sleekxmpp/plugins')
-rw-r--r-- | sleekxmpp/plugins/xep_0060/stanza/pubsub_errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0060/stanza/pubsub_errors.py b/sleekxmpp/plugins/xep_0060/stanza/pubsub_errors.py index 46374a35..aeaeefe0 100644 --- a/sleekxmpp/plugins/xep_0060/stanza/pubsub_errors.py +++ b/sleekxmpp/plugins/xep_0060/stanza/pubsub_errors.py @@ -22,7 +22,7 @@ class PubsubErrorCondition(ElementBase): 'max-items-exceeded', 'max-nodes-exceeded', 'nodeid-required', 'not-in-roster-group', 'not-subscribed', 'payload-too-big', - 'payload-required' 'pending-subscription', + 'payload-required', 'pending-subscription', 'presence-subscription-required', 'subid-required', 'too-many-subscriptions', 'unsupported')) condition_ns = 'http://jabber.org/protocol/pubsub#errors' |