Fixed printing lists for users
This commit is contained in:
parent
8fac5ad7c2
commit
9af8d9a496
3 changed files with 6 additions and 9 deletions
|
@ -753,13 +753,14 @@ class UserBox(gtk.VBox):
|
|||
self.verified_label.hide()
|
||||
self.name_label.hide()
|
||||
self.avatar.hide()
|
||||
self.list_label.hide()
|
||||
|
||||
|
||||
def set_lists(self, lists):
|
||||
if not lists:
|
||||
return
|
||||
|
||||
list_label_text = 'In lists: '
|
||||
list_label_text = 'Lists: '
|
||||
|
||||
for l in lists:
|
||||
list_label_text += l + ' '
|
||||
|
|
Reference in a new issue