Minor cosmetic print statement fixes for readability
authorEric Edgar <rocket@gentoo.org>
Wed, 6 Jul 2005 18:48:03 +0000 (18:48 +0000)
committerEric Edgar <rocket@gentoo.org>
Wed, 6 Jul 2005 18:48:03 +0000 (18:48 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@750 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
modules/generic_stage_target.py

index 82a579a161a5685082fb115dbd2b96ecd5ed3d0f..3b5c63add7c0a3654d0d7bd93be54578cd15a61f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 # 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:
index e3b011b207b6ef09292f48c3c0c568c311057736..3383c59968f3890ff5b302b3ea82a3c8d2e2c487 100644 (file)
@@ -1,6 +1,6 @@
 # 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
@@ -148,7 +148,7 @@ class generic_stage_target(generic_target):
                # 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"]
 
@@ -473,7 +473,7 @@ class generic_stage_target(generic_target):
                                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"])