Project/Project.py

changeset 371
913f2c88915b
parent 344
3a1d9835e46b
child 398
5b5636320dca
--- a/Project/Project.py	Sun Jun 27 12:19:45 2010 +0200
+++ b/Project/Project.py	Mon Jun 28 19:02:47 2010 +0200
@@ -3167,7 +3167,9 @@
         
         @param path path to be checked (string)
         """
-        if self.ppathRe:
+        if self.ppath and path == self.ppath:
+            return True
+        elif self.ppathRe:
             return self.ppathRe.match(path) is not None
         else:
             return False
@@ -3209,7 +3211,10 @@
             belong to the project (string)
         """
         if self.startswithProjectPath(path):
-            return self.ppathRe.sub("", path, 1)
+            if self.ppath and path == self.ppath:
+                return ""
+            else:
+                return self.ppathRe.sub("", path, 1)
         else:
             return path
         

eric ide

mercurial