--- a/eric6/E5XML/PluginRepositoryReader.py Sat Sep 21 15:37:43 2019 +0200 +++ b/eric6/E5XML/PluginRepositoryReader.py Sat Sep 21 16:04:17 2019 +0200 @@ -88,8 +88,9 @@ pluginInfo["short"] = self.readElementText() elif self.name() == "Description": txt = self.readElementText() - pluginInfo["description"] = \ - [line.strip() for line in txt.splitlines()] + pluginInfo["description"] = [ + line.strip() for line in txt.splitlines() + ] elif self.name() == "Url": pluginInfo["url"] = self.readElementText() elif self.name() == "Author":