Fix a type mismatch error in lubuntu-notifier.py

This commit is contained in:
Aaron Rainbolt 2023-03-26 12:44:23 -05:00
parent 366d4ad7ac
commit 7b0c65e522
2 changed files with 8 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
lubuntu-update-notifier (0.5.1~22.04.3) jammy; urgency=medium
* Don't try to pass a string to QTreeWidgetItem when it expects an
Iterable[str]. (LP: #2012823)
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Sun, 26 Mar 2023 12:21:33 -0500
lubuntu-update-notifier (0.5.1~22.04.2) jammy; urgency=medium
* SRU backport of 0.5.1 to the Jammy stable release.

View File

@ -129,7 +129,7 @@ class Dialog(QWidget):
if len(pkg_delete) > 0:
toDelete = QTreeWidgetItem([_('Remove')])
for p in pkg_delete:
td_child = QTreeWidgetItem(p.name)
td_child = QTreeWidgetItem([p.name])
toDelete.addChild(td_child)
toDelete.setIcon(0, QIcon.fromTheme("edit-delete"))
self.tw.addTopLevelItem(toDelete)