diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-24 19:43:39 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-24 19:43:39 -0700 |
commit | 9d8de7fc15afc39a666d2ac16b62a068dfc55112 (patch) | |
tree | 869ab78459c1fd72d6dde60f094bd9438c9ee0a3 /sleekxmpp/plugins/xep_0084/stanza.py | |
parent | 70883086b7b5c290f220357ba920db504b926008 (diff) | |
download | slixmpp-9d8de7fc15afc39a666d2ac16b62a068dfc55112.tar.gz slixmpp-9d8de7fc15afc39a666d2ac16b62a068dfc55112.tar.bz2 slixmpp-9d8de7fc15afc39a666d2ac16b62a068dfc55112.tar.xz slixmpp-9d8de7fc15afc39a666d2ac16b62a068dfc55112.zip |
Fix publish vcard avatars, and PEP avatar metadata.
Diffstat (limited to 'sleekxmpp/plugins/xep_0084/stanza.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0084/stanza.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0084/stanza.py b/sleekxmpp/plugins/xep_0084/stanza.py index 1b204471..e9133998 100644 --- a/sleekxmpp/plugins/xep_0084/stanza.py +++ b/sleekxmpp/plugins/xep_0084/stanza.py @@ -43,7 +43,7 @@ class MetaData(ElementBase): info = Info() info.values = {'id': id, 'type': itype, - 'bytes': ibytes, + 'bytes': '%s' % ibytes, 'height': height, 'width': width, 'url': url} |