diff options
author | mathieui <mathieui@mathieui.net> | 2011-06-04 20:15:18 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-06-04 20:15:18 +0200 |
commit | e27c6d74ada2dbe81c41b991a26028a4d9436ee4 (patch) | |
tree | a7216ec578c92bea59316a95c35b4d647421c2af /src/contact.py | |
parent | fc3f6d936dd821e66ac96e9797bc7868f8d4b4db (diff) | |
download | poezio-e27c6d74ada2dbe81c41b991a26028a4d9436ee4.tar.gz poezio-e27c6d74ada2dbe81c41b991a26028a4d9436ee4.tar.bz2 poezio-e27c6d74ada2dbe81c41b991a26028a4d9436ee4.tar.xz poezio-e27c6d74ada2dbe81c41b991a26028a4d9436ee4.zip |
fix the display of the action 'emptying the status', and some few minor changes
Diffstat (limited to 'src/contact.py')
-rw-r--r-- | src/contact.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contact.py b/src/contact.py index 804a7068..ee0e1e80 100644 --- a/src/contact.py +++ b/src/contact.py @@ -166,5 +166,5 @@ class Contact(object): def __repr__(self): ret = '<Contact: %s' % self._jid for resource in self._resources: - ret += '\n\t\t%s'%resource + ret += '\n\t\t%s' % resource return ret + ' />\n' |