fix my previous fix of a string.join() call
authorAndrew Gaffney <agaffney@gentoo.org>
Sun, 29 Nov 2009 17:27:58 +0000 (11:27 -0600)
committerAndrew Gaffney <agaffney@gentoo.org>
Sun, 29 Nov 2009 17:27:58 +0000 (11:27 -0600)
modules/catalyst/target/generic_stage.py

index e45b11903fe96c52ae3de9822bc044ec395595fb..604cdf6af0ee63c9a1e653c49fc98f5d67ce6af3 100644 (file)
@@ -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):