"""
if self._destination_folder != "" and self._project_name <> "":
if not self._destination_folder.endswith(os.sep):
- self._destination_folder += "/"
+ self._destination_folder += os.sep
self.pageContent.projectPath.setText(QDir.toNativeSeparators(self._destination_folder + self._project_name))
if os.path.exists(self._destination_folder + self._project_name):
self.pageContent.warningLabel.setVisible(True)
self.pageContent.projectPath.setText("None")
self.pageContent.warningLabel.setVisible(False)
self.pageContent.warningLabel.setText("")
- self.emit(SIGNAL("completeChanged()"))
\ No newline at end of file
+ self.emit(SIGNAL("completeChanged()"))