X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFolderPage.py;h=dc53d10c0d0f6c5e697b95835bf42228fd7d4fdf;hb=a2b7cef2ca39b35ae66710801a0228e6b821d0aa;hp=f92b457743b4c47290ef9103a4836e6d3641fb5c;hpb=5869df5617befd9ae3812e60bc50bb531b2d6e42;p=bertos.git diff --git a/wizard/BFolderPage.py b/wizard/BFolderPage.py index f92b4577..dc53d10c 100644 --- a/wizard/BFolderPage.py +++ b/wizard/BFolderPage.py @@ -45,7 +45,7 @@ class BFolderPage(BWizardPage): if self._destinationFolder != "" and self._projectName <> "": if not self._destinationFolder.endswith(os.sep): self._destinationFolder += os.sep - self.pageContent.projectPath.setText(self._destinationFolder + self._projectName + "/") + self.pageContent.projectPath.setText(self._destinationFolder + self._projectName) else: self.pageContent.projectPath.setText("None") self.emit(SIGNAL("completeChanged()")) @@ -57,7 +57,7 @@ class BFolderPage(BWizardPage): def isComplete(self): if self.pageContent.projectPath.text() != "None": - self._projectInfoStore("PROJECT_PATH", self.pageContent.projectPath.text()) + self._projectInfoStore("PROJECT_PATH", unicode(self.pageContent.projectPath.text())) return True else: return False \ No newline at end of file