diff -r 0c137bb40ac7 -r 913f2c88915b Project/Project.py --- 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