From 9c77f932c6a2ed66ca7b60e1cedb08a4240d9c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ozan=20=C3=87a=C4=9Flayan?= Date: Tue, 13 Oct 2009 13:06:46 +0000 Subject: [PATCH] fix syntax error --- pisi/actionsapi/kerneltools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/actionsapi/kerneltools.py b/pisi/actionsapi/kerneltools.py index 6dfd17ef..b7448f82 100644 --- a/pisi/actionsapi/kerneltools.py +++ b/pisi/actionsapi/kerneltools.py @@ -248,7 +248,7 @@ def installLibcHeaders(excludes=[]): # Remove possible excludes given by actions.py if excludes: - shelltools.system("rm -rf %s" % " ".join(["%s/%s" % (headers_dir, exc.strip("/")) for exc in excludes)) + shelltools.system("rm -rf %s" % " ".join(["%s/%s" % (headers_dir, exc.strip("/")) for exc in excludes])) shelltools.cd(oldwd)