diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-07-19 15:38:48 -0700 |
---|---|---|
committer | Nathan Fritz <nathan@andyet.net> | 2010-07-19 15:38:48 -0700 |
commit | fec8578cf61696d8ca85a6fe85a55be71d7109fd (patch) | |
tree | efa425808db04a199e59d0b6fe5efa81c0e3d455 /sleekxmpp/plugins/xep_0045.py | |
parent | f80b3285d49a2ca395369a98cb0f7cf1fda4e218 (diff) | |
download | slixmpp-fec8578cf61696d8ca85a6fe85a55be71d7109fd.tar.gz slixmpp-fec8578cf61696d8ca85a6fe85a55be71d7109fd.tar.bz2 slixmpp-fec8578cf61696d8ca85a6fe85a55be71d7109fd.tar.xz slixmpp-fec8578cf61696d8ca85a6fe85a55be71d7109fd.zip |
stanza should not have setValues/getValues because that conflicts with attribute accessors
Diffstat (limited to 'sleekxmpp/plugins/xep_0045.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0045.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0045.py b/sleekxmpp/plugins/xep_0045.py index 88ada19d..cc676a6f 100644 --- a/sleekxmpp/plugins/xep_0045.py +++ b/sleekxmpp/plugins/xep_0045.py @@ -134,7 +134,7 @@ class xep_0045(base.base_plugin): """ if pr['muc']['room'] not in self.rooms.keys(): return - entry = pr['muc'].getValues() + entry = pr['muc'].getStanzaValues() if pr['type'] == 'unavailable': del self.rooms[entry['room']][entry['nick']] else: |