From: Andrew Gaffney Date: Sun, 29 Nov 2009 17:27:58 +0000 (-0600) Subject: fix my previous fix of a string.join() call X-Git-Tag: CATALYST-2.0.10~3^2~73 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c5f5c64a5045a6291b2be9dacbc6b837112b91e7;p=catalyst.git fix my previous fix of a string.join() call --- 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):