Merge pull request #178 from elelay/gtk3-unicode

fix another stray str call
This commit is contained in:
Thomas Perl 2016-11-26 16:30:22 +01:00 committed by GitHub
commit 9a913862df

View file

@ -72,7 +72,7 @@ class DirectoryPodcastsModel(Gtk.ListStore):
self.callback_can_subscribe(len(self.get_selected_podcasts()) > 0)
def get_selected_podcasts(self):
return [(str(row[self.C_TITLE],'utf8'), row[self.C_URL]) for row in self if row[self.C_SELECTED]]
return [(row[self.C_TITLE], row[self.C_URL]) for row in self if row[self.C_SELECTED]]
class DirectoryProvidersModel(Gtk.ListStore):