# 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
# 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):