From d0af4dcbddb405bfd1ab4644aa50ef415faac918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Wed, 29 Jun 2005 17:57:29 +0000 Subject: [PATCH] =?UTF-8?q?lanet=20=C5=9Fey.=20collutions=20de=C4=9Fil=20o?= =?UTF-8?q?...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pisi/build.py b/pisi/build.py index fccb6e44..1088d713 100644 --- a/pisi/build.py +++ b/pisi/build.py @@ -43,15 +43,15 @@ def checkPathCollision(package, pkgList): """This function will check for collision of paths in a package with the paths of packages in pkgList. The return value will be the list containing the paths that collide.""" - collutions = [] + collisions = [] for pinfo in package.paths: for pkg in pkgList: if pkg is package: continue for path in pkg.paths: if path.pathname.startswith(pinfo.pathname): - collutions.append(path.pathname) - return collutions + collisions.append(path.pathname) + return collisions class PisiBuild: