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 D2E9A139695 for ; Thu, 16 Mar 2017 22:57:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 063AD21C100; Thu, 16 Mar 2017 22:57:05 +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 DC1E821C100 for ; Thu, 16 Mar 2017 22:57:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BD67F34112A for ; Thu, 16 Mar 2017 22:57:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC6B36AB1 for ; Thu, 16 Mar 2017 22:57:01 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1489704970.1e3d3d2914239d92d321648405f6320a7d94cc39.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 1e3d3d2914239d92d321648405f6320a7d94cc39 X-VCS-Branch: pending Date: Thu, 16 Mar 2017 22:57:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1c55d7c3-010e-427d-88a2-9b009e000ce0 X-Archives-Hash: bf5b2918c6b514704245b4591cc15b6c commit: 1e3d3d2914239d92d321648405f6320a7d94cc39 Author: Brian Dolbec gentoo org> AuthorDate: Thu Mar 9 08:58:10 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Mar 16 22:56:10 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1e3d3d29 base/stagebase.py: Correctly log the correct function name for unpack_snapshot() 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 93c1390..532f099 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -822,7 +822,7 @@ class StageBase(TargetBase, ClearBase, GenBase): target_portdir = 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 = %s', target_portdir) + log.info('unpack_snapshot(), target_portdir = %s', target_portdir) if "snapcache" in self.settings["options"]: snapshot_cache_hash_path = pjoin( self.settings['snapshot_cache_path'], 'catalyst-hash')