From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8D85A139694 for ; Fri, 10 Mar 2017 19:23:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6C6BE0C47; Fri, 10 Mar 2017 19:23:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4FBBE0C47 for ; Fri, 10 Mar 2017 19:23:11 +0000 (UTC) Received: from professor-x (d108-172-194-175.bchsia.telus.net [108.172.194.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: dolsen) by smtp.gentoo.org (Postfix) with ESMTPSA id 2C3C334105A for ; Fri, 10 Mar 2017 19:23:11 +0000 (UTC) Date: Fri, 10 Mar 2017 11:23:08 -0800 From: Brian Dolbec To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 3/7] base/stagebase.py: Correctly log the correct function name for unpack_snapshot() Message-ID: <20170310112308.1f299f7a.dolsen@gentoo.org> Organization: Gentoo Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable X-Archives-Salt: f4f31738-d60f-4e8e-bd91-a876f32013d9 X-Archives-Hash: a65311aff0c44600754d7ec93a535a66 =46rom d235c9e45cc72f68a7cf85a5526ef1c27233b234 Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Thu, 9 Mar 2017 00:58:10 -0800 Subject: [PATCH 3/7] base/stagebase.py: Correctly log the correct function name for unpack_snapshot() To: gentoo-catalyst@lists.gentoo.org --- catalyst/base/stagebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 35556dae..677e19dc 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -841,7 +841,7 @@ class StageBase(TargetBase, ClearBase, GenBase): target_portdir =3D normpath(self.settings["chroot_path"] + self.settings["repo_basedir"] + "/" + self.settings["repo_name"]) log.info('%s', self.settings['chroot_path']) - log.info('unpack(), target_portdir =3D %s', target_portdir) + log.info('unpack_snapshot(), target_portdir =3D %s', target_portdir) if "snapcache" in self.settings["options"]: snapshot_cache_hash_path =3D pjoin( self.settings['snapshot_cache_path'], 'catalyst-hash') --=20 2.12.0 --=20 Brian Dolbec