# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.292 2005/07/06 18:39:28 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.293 2005/07/06 18:48:03 rocket Exp $
+
+ 06 Jul 2005; <eje001@gentoo.org> modules/generic_stage_target.py:
+ Minor cosmetic print statement fixes for readability
06 Jul 2005; Eric Edgar <rocket@gentoo.org> catalyst, modules/catalyst_support.py,
modules/generic_stage_target.py:
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.50 2005/07/06 18:28:13 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.51 2005/07/06 18:48:03 rocket Exp $
"""
This class does all of the chroot setup, copying of files, etc. It is
# configure any user specified options (either in catalyst.conf or on the cmdline)
if self.settings.has_key("PKGCACHE"):
self.set_pkgcache_path()
- print "Location of the package cache is" + self.settings["pkgcache_path"]
+ print "Location of the package cache is " + self.settings["pkgcache_path"]
self.mounts.append("/usr/portage/packages")
self.mountmap["/usr/portage/packages"]=self.settings["pkgcache_path"]
and self.settings["source_path_md5sum"] == clst_unpack_md5sum:
print "Valid Resume point detected, skipping unpack ..."
else:
- print "Unpacking ..."
+ print "Unpacking stage..."
if not os.path.exists(self.settings["chroot_path"]):
os.makedirs(self.settings["chroot_path"])