From: Andrew Gaffney Date: Wed, 20 Jan 2010 02:34:57 +0000 (-0600) Subject: Missing space in catalyst.util.list_bashify() X-Git-Tag: CATALYST-2.0.10~3^2~67 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7587f91fd37d4db4caf4c006ff3a684db75b7533;p=catalyst.git Missing space in catalyst.util.list_bashify() --- diff --git a/ChangeLog b/ChangeLog index 5d8c2852..f1027316 100644 --- 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 + modules/catalyst/util.py: + Missing space in catalyst.util.list_bashify() + 29 Dec 2009; Andrew Gaffney targets/support/chroot-functions.sh: Only run depclean for stage3/system diff --git a/modules/catalyst/util.py b/modules/catalyst/util.py index 09f9c441..7427ac1b 100644 --- a/modules/catalyst/util.py +++ b/modules/catalyst/util.py @@ -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):