X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=inline;f=wizard%2FBToolchainPage.py;h=a2ecfeb550a13f563f0f3cddac45dd8ae713c175;hb=98c9cd8fdcf45680606672eb88317d76a509c9fa;hp=4c832c4a97e31b75f194587466b6aef9bef1f535;hpb=f1c133fc6e58086c21cc25f869cd3534e000304f;p=bertos.git diff --git a/wizard/BToolchainPage.py b/wizard/BToolchainPage.py index 4c832c4a..a2ecfeb5 100644 --- a/wizard/BToolchainPage.py +++ b/wizard/BToolchainPage.py @@ -48,7 +48,7 @@ class BToolchainPage(BWizardPage): if self.pageContent.toolchainList.currentIndex != -1: infos = collections.defaultdict(lambda: unicode("not defined")) infos.update(qvariant_converter.getStringDict(self.pageContent.toolchainList.currentItem().data(Qt.UserRole))) - self.pageContent.infoLabel.setText("GCC " + infos["version"] + " (" + infos["build"] + ")\nTarget: " + infos["target"] + "\nPath: " + infos["path"]) + self.pageContent.infoLabel.setText("GCC " + infos["version"] + " (" + infos["build"] + ")\nTarget: " + infos["target"] + "\nPath: " + os.path.normpath(infos["path"])) self.pageContent.infoLabel.setVisible(True) self.emit(SIGNAL("completeChanged()"))