Use the native separator displaying pathnames
[bertos.git] / wizard / BToolchainPage.py
index 4c832c4a97e31b75f194587466b6aef9bef1f535..a2ecfeb550a13f563f0f3cddac45dd8ae713c175 100644 (file)
@@ -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()"))