Make the roster easier to inspect.

The __repr__ version now looks like a regular dictionary.
This commit is contained in:
Lance Stout
2012-01-10 20:03:22 -08:00
parent a86935a42f
commit 1eb69f7075
3 changed files with 9 additions and 0 deletions
+3
View File
@@ -482,3 +482,6 @@ class RosterItem(object):
a roster reset request.
"""
self.resources = {}
def __repr__(self):
return repr(self._state)