From 0b76504d83fce7212c008b428697cd9e30ba8f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Fri, 1 Jul 2005 12:57:49 +0000 Subject: [PATCH] =?UTF-8?q?r1595'de=20yapt=C4=B1=C4=9F=C4=B1m=C4=B1=20geri?= =?UTF-8?q?=20al=C4=B1yorum.=20B=C3=B6ylesi=20daha=20tutarl=C4=B1=20g?= =?UTF-8?q?=C3=B6z=C3=BCkt=C3=BC=20g=C3=B6z=C3=BCme...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/util.py b/pisi/util.py index b6589140..b60df0ed 100644 --- a/pisi/util.py +++ b/pisi/util.py @@ -115,7 +115,7 @@ def commonprefix(l): # but this one is necessary def subpath(a, b): "find if path a is before b in the directory tree" - return b.startswith(a) + return prefix(splitpath(a), splitpath(b)) def removepathprefix(prefix, path): "remove path prefix a from b, finding the pathname rooted at a"