diff -r 0a02c433f52d -r 5883ce99ee12 PluginManager/PluginRepositoryDialog.py --- a/PluginManager/PluginRepositoryDialog.py Fri Nov 01 15:48:48 2013 +0100 +++ b/PluginManager/PluginRepositoryDialog.py Sun Nov 03 15:58:22 2013 +0100 @@ -172,7 +172,7 @@ self.urlEdit.setText(current.data(0, urlRole) or "") self.descriptionEdit.setPlainText( - current.data(0, descrRole) and \ + current.data(0, descrRole) and self.__formatDescription(current.data(0, descrRole)) or "") self.authorEdit.setText(current.data(0, authorRole) or "") @@ -337,15 +337,15 @@ self, self.trUtf8("Read plugins repository file"), self.trUtf8("<p>The plugins repository file <b>{0}</b> " - "could not be read. Select Update</p>")\ - .format(self.pluginRepositoryFile)) + "could not be read. Select Update</p>") + .format(self.pluginRepositoryFile)) else: self.__repositoryMissing = True QTreeWidgetItem( self.repositoryList, ["", self.trUtf8( "No plugin repository file available.\nSelect Update.") - ]) + ]) self.repositoryList.resizeColumnToContents(1) def __downloadFile(self, url, filename, doneMethod=None):