Change the comment style for the modules and the list, and use the newParser to parse...
[bertos.git] / wizard / BFolderPage.py
index a14dda2f5d000e8c358b77d5904d2a29ad5fc853..ba79b4a9edade3dc1451f073c6a846140c9daf1e 100644 (file)
@@ -54,7 +54,8 @@ class BFolderPage(BWizardPage):
             self.pageContent.projectPath.setText(self._destinationFolder + self._projectName)
             if os.path.exists(self._destinationFolder + self._projectName):
                 self.pageContent.warningLabel.setVisible(True)
-                self.pageContent.warningLabel.setText(self.tr("<font color='#FF0000'>Warning: the selected directory exists, it will be destroyed with all contained subdirectories and files...</font>"))
+                self.pageContent.warningLabel.setText(self.tr("<font color='#FF0000'>Warning: the selected directory exists, \
+                    it will be destroyed with all contained subdirectories and files...</font>"))
             else:
                 self.pageContent.warningLabel.setVisible(False)
                 self.pageContent.warningLabel.setText("")
@@ -66,7 +67,7 @@ class BFolderPage(BWizardPage):
     
     def _selectDirectory(self):
         directory = unicode(QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly))
-        if len(directory) == "":
+        if len(directory) > 0:
             self.pageContent.directoryEdit.setText(directory)
     
     def isComplete(self):