summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-12-20 12:30:35 -0500
committerLance Stout <lancestout@gmail.com>2011-12-20 12:30:35 -0500
commitfb55d9e9d1ffd9ebec18dcf101308ac89dc865ad (patch)
treeadaceed18d40cc28c64ded1e4364899e3cff8aa5
parent74e7e5a29194f7d0c382c7b5a9d0bc7127d431c6 (diff)
downloadslixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.tar.gz
slixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.tar.bz2
slixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.tar.xz
slixmpp-fb55d9e9d1ffd9ebec18dcf101308ac89dc865ad.zip
Add comma to fix pubsub error conditions.
Fixes issue #127
-rw-r--r--sleekxmpp/plugins/xep_0060/stanza/pubsub_errors.py2
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'