summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--poezio/contact.py2
-rw-r--r--poezio/tabs/conversationtab.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/poezio/contact.py b/poezio/contact.py
index 883c607a..6e01e41e 100644
--- a/poezio/contact.py
+++ b/poezio/contact.py
@@ -40,8 +40,6 @@ class Resource(object):
def presence(self):
return self._data.get('show') or ''
- show = presence
-
@property
def status(self):
return self._data.get('status') or ''
diff --git a/poezio/tabs/conversationtab.py b/poezio/tabs/conversationtab.py
index 8da8f5ca..9f7c1391 100644
--- a/poezio/tabs/conversationtab.py
+++ b/poezio/tabs/conversationtab.py
@@ -200,7 +200,7 @@ class ConversationTab(OneToOneTab):
if resource:
status = ('Status: %s' % resource.status) if resource.status else ''
self._text_buffer.add_message("\x19%(info_col)s}Show: %(show)s, %(status)s\x19o" % {
- 'show': resource.show or 'available', 'status': status, 'info_col': dump_tuple(get_theme().COLOR_INFORMATION_TEXT)})
+ 'show': resource.presence or 'available', 'status': status, 'info_col': dump_tuple(get_theme().COLOR_INFORMATION_TEXT)})
return True
else:
self._text_buffer.add_message("\x19%(info_col)s}No information available\x19o" % {'info_col': dump_tuple(get_theme().COLOR_INFORMATION_TEXT)})