diff options
author | Lance Stout <lancestout@gmail.com> | 2011-03-23 22:59:21 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-03-23 22:59:21 -0400 |
commit | 4916a12b6f2515b22b504c650bd97dd4c30c4471 (patch) | |
tree | dddbf8e3bacb9a242aec4ab8baefa499a981a48a /examples/disco_browser.py | |
parent | d6f2e51b05b94934680c579804b6af3fe404d852 (diff) | |
download | slixmpp-4916a12b6f2515b22b504c650bd97dd4c30c4471.tar.gz slixmpp-4916a12b6f2515b22b504c650bd97dd4c30c4471.tar.bz2 slixmpp-4916a12b6f2515b22b504c650bd97dd4c30c4471.tar.xz slixmpp-4916a12b6f2515b22b504c650bd97dd4c30c4471.zip |
Tidy up the examples.
Diffstat (limited to 'examples/disco_browser.py')
-rwxr-xr-x | examples/disco_browser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/disco_browser.py b/examples/disco_browser.py index 0d746083..b2b96f95 100755 --- a/examples/disco_browser.py +++ b/examples/disco_browser.py @@ -113,7 +113,7 @@ class Disco(sleekxmpp.ClientXMPP): if self.get in self.identity_types: print('Identities:') for identity in info['disco_info']['identities']: - print(' - ', identity) + print(' - %s' % str(identity)) if self.get in self.feature_types: print('Features:') |