diff --git a/mytwitter.py b/mytwitter.py index 65101f2..9d7d4ec 100755 --- a/mytwitter.py +++ b/mytwitter.py @@ -61,8 +61,13 @@ class MyTwitter(): # Fill the ComboBox with entries self.list_select.append_text('@' + self.username) lists = self.api.GetUserLists() + list_names = [] + # two passes to sort this nicely for l in lists['lists']: - self.list_select.append_text(l.name) + list_names.append(l.name) + list_names.sort() + for l in list_names: + self.list_select.append_text(l) # Timer to update periodically self.update_window()