Missing space in catalyst.util.list_bashify()
authorAndrew Gaffney <agaffney@gentoo.org>
Wed, 20 Jan 2010 02:34:57 +0000 (20:34 -0600)
committerAndrew Gaffney <agaffney@gentoo.org>
Wed, 20 Jan 2010 02:34:57 +0000 (20:34 -0600)
ChangeLog
modules/catalyst/util.py

index 5d8c285201337272b9e521b2a2535254976f0072..f10273164a382c89696439bfd923cf390063c3b1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,12 @@
 # ChangeLog for catalyst
-# Copyright 1999-2009 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS)
+# Copyright 1999-2010 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS)
 # Distributed under the GPL v2
 # $Id$
 
+  20 Jan 2010; Andrew Gaffney <agaffney@gentoo.org>
+  modules/catalyst/util.py:
+  Missing space in catalyst.util.list_bashify()
+
   29 Dec 2009; Andrew Gaffney <agaffney@gentoo.org>
   targets/support/chroot-functions.sh:
   Only run depclean for stage3/system
index 09f9c4419fd846724f8c78192e89b2489f731b97..7427ac1bc254956c613989c10da807d7b14e7566 100644 (file)
@@ -57,7 +57,7 @@ def list_bashify(mylist):
                # surround args with quotes for passing to bash,
                # allows things like "<" to remain intact
                mypack[x] = "'" + mypack[x] + "'"
-       mypack = "".join(mypack)
+       mypack = " ".join(mypack)
        return mypack
 
 def list_to_string(mylist):