Change the error message for WindowsError.
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 21 May 2010 13:56:37 +0000 (13:56 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 21 May 2010 13:56:37 +0000 (13:56 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3781 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BFinalPage.py

index 1285850aea9bb2fb66a2b6573ecfae403316832b..459c486418a0df4e47e59953a11b0c482779833e 100644 (file)
@@ -64,7 +64,10 @@ class BFinalPage(BWizardPage):
                 # locked.
                 self.project.createBertosProject()
             except OSError, e:
-                QMessageBox.critical(self, self.tr("Error removing destination directory"), self.tr("Close all the application using this directory and retry."))
+                QMessageBox.critical(
+                    self,
+                    self.tr("Error removing destination directory"),
+                    self.tr("Error removing the destination directory. This directory or a file in it is in use by another user or application.\nClose the application that is using the directory and retry."))
                 self.wizard().back()
                 return
         finally: