From 7587f91fd37d4db4caf4c006ff3a684db75b7533 Mon Sep 17 00:00:00 2001 From: Andrew Gaffney Date: Tue, 19 Jan 2010 20:34:57 -0600 Subject: [PATCH] Missing space in catalyst.util.list_bashify() --- ChangeLog | 6 +++++- modules/catalyst/util.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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): -- 2.26.2