Fixed an issue causing the FIDO2 info dialog to crash on Windows. eric7

Sat, 27 Jul 2024 12:03:50 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 27 Jul 2024 12:03:50 +0200
branch
eric7
changeset 10867
75160699ac5a
parent 10866
34719c7c0f42
child 10868
ca5cd7faaf5e

Fixed an issue causing the FIDO2 info dialog to crash on Windows.

src/eric7/WebBrowser/WebAuth/Fido2InfoDialog.py file | annotate | diff | comparison | revisions
--- a/src/eric7/WebBrowser/WebAuth/Fido2InfoDialog.py	Sat Jul 27 11:23:29 2024 +0200
+++ b/src/eric7/WebBrowser/WebAuth/Fido2InfoDialog.py	Sat Jul 27 12:03:50 2024 +0200
@@ -49,7 +49,7 @@
                 topItem.setFirstColumnSpanned(True)
                 topItem.setExpanded(True)
                 for entry in data[key]:
-                    QTreeWidgetItem(topItem, list(entry))
+                    QTreeWidgetItem(topItem, [str(e) for e in entry])
 
         self.infoWidget.sortItems(1, Qt.SortOrder.AscendingOrder)
         self.infoWidget.sortItems(0, Qt.SortOrder.AscendingOrder)

eric ide

mercurial