Project/Project.py

changeset 97
c4086afea02b
parent 76
2e74244db9bb
child 118
8be7b777742c
--- a/Project/Project.py	Sun Jan 31 17:11:22 2010 +0000
+++ b/Project/Project.py	Sun Jan 31 18:31:28 2010 +0000
@@ -8,8 +8,6 @@
 """
 
 import os
-import sys
-import re
 import time
 import shutil
 import glob
@@ -69,8 +67,6 @@
 import Preferences
 import Utilities
 
-from eric5config import getConfig
-
 class Project(QObject):
     """
     Class implementing the project management functionality.
@@ -884,7 +880,7 @@
             
         # now read the file
         if line.startswith('<?xml'):
-            res = self.__readXMLSession(fn, dtdLine.startswith("<!DOCTYPE"), quiet)
+            self.__readXMLSession(fn, dtdLine.startswith("<!DOCTYPE"), quiet)
         else:
             if not quiet:
                 QMessageBox.critical(None,
@@ -1097,7 +1093,7 @@
             
         # now read the file
         if line.startswith('<?xml'):
-            res = self.__readXMLTasks(fn, dtdLine.startswith("<!DOCTYPE"))
+            self.__readXMLTasks(fn, dtdLine.startswith("<!DOCTYPE"))
         else:
             QMessageBox.critical(None,
                 self.trUtf8("Read project session"),
@@ -1696,7 +1692,6 @@
             fnames, target, isSource = dlg.getData()
             if target != '':
                 for fn in fnames:
-                    ext = os.path.splitext(fn)[1]
                     targetfile = os.path.join(target, os.path.basename(fn))
                     if not Utilities.samepath(os.path.dirname(fn), target):
                         try:
@@ -1721,8 +1716,8 @@
                             QMessageBox.critical(None,
                                 self.trUtf8("Add file"),
                                 self.trUtf8("<p>The selected file <b>{0}</b> could not be"
-                                    " added to <b>{1}</b>.</p>")
-                                    .format(fn, target),
+                                    " added to <b>{1}</b>.</p><p>Reason: {2}</p>")
+                                    .format(fn, target, str(why)),
                                 QMessageBox.StandardButtons(\
                                     QMessageBox.Abort))
                             return
@@ -1773,8 +1768,8 @@
                 QMessageBox.critical(None,
                     self.trUtf8("Add directory"),
                     self.trUtf8("<p>The target directory <b>{0}</b> could not be"
-                        " created.</p>")
-                        .format(target),
+                        " created.</p><p>Reason: {1}</p>")
+                        .format(target, str(why)),
                     QMessageBox.StandardButtons(\
                         QMessageBox.Abort))
                 return

eric ide

mercurial