From c5f5c64a5045a6291b2be9dacbc6b837112b91e7 Mon Sep 17 00:00:00 2001 From: Andrew Gaffney Date: Sun, 29 Nov 2009 11:27:58 -0600 Subject: [PATCH] fix my previous fix of a string.join() call --- modules/catalyst/target/generic_stage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/catalyst/target/generic_stage.py b/modules/catalyst/target/generic_stage.py index e45b1190..604cdf6a 100644 --- a/modules/catalyst/target/generic_stage.py +++ b/modules/catalyst/target/generic_stage.py @@ -871,7 +871,7 @@ class generic_stage_target(generic_target): """ Capture target in a tarball """ mypath=self.settings["target_path"].split("/") """ Remove filename from path """ - mypath = " ".join(mypath[:-1],"/") + mypath = "/".join(mypath[:-1]) """ Now make sure path exists """ if not os.path.exists(mypath): -- 2.26.2