contact: Remove now-unused alias of presence to show.

This commit is contained in:
Emmanuel Gil Peyrot 2017-10-07 12:30:24 +01:00
parent 8eb7f73bef
commit 27d2157c74
2 changed files with 1 additions and 3 deletions

View file

@ -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 ''

View file

@ -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)})