--- a/src/eric7/EricXML/PluginRepositoryReader.py Thu Nov 16 13:58:04 2023 +0100 +++ b/src/eric7/EricXML/PluginRepositoryReader.py Thu Nov 16 15:56:12 2023 +0100 @@ -24,9 +24,11 @@ """ Constructor - @param device reference to the I/O device to read from (QIODevice) + @param device reference to the I/O device to read from + @type QIODevice @param entryCallback reference to a function to be called once the - data for a plug-in has been read (function) + data for a plug-in has been read + @type function """ XMLStreamReaderBase.__init__(self, device) @@ -70,6 +72,7 @@ "version": "", "filename": "", "status": self.attribute("status", "unknown"), + "category": self.attribute("category", "not categorized") } while not self.atEnd(): @@ -84,6 +87,7 @@ pluginInfo["version"], pluginInfo["filename"], pluginInfo["status"], + pluginInfo["category"], ) break