implementing new suggestions api

This commit is contained in:
Vinicius Moreira
2019-09-04 15:48:24 -03:00
parent 3275cb4d54
commit 82998d5a99
2 changed files with 10 additions and 4 deletions

View File

@@ -385,7 +385,7 @@ class FindSuggestions(AsyncAction):
def run(self):
sugs = self.man.list_suggestions(limit=-1)
self.notify_finished(sugs if sugs is not None else [])
self.notify_finished([s.package for s in sugs] if sugs is not None else [])
class ListWarnings(QThread):