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 ACE40139695 for ; Sat, 11 Mar 2017 07:07:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB9CDE0C38; Sat, 11 Mar 2017 07:07:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 98428E0C2F for ; Sat, 11 Mar 2017 07:07:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A3589340F2A for ; Sat, 11 Mar 2017 07:07:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A33C6439 for ; Sat, 11 Mar 2017 07:07:52 +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: <1489201109.36768e1957168bc19574fdfcd9158f8d8c7aeeeb.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: 36768e1957168bc19574fdfcd9158f8d8c7aeeeb X-VCS-Branch: pending Date: Sat, 11 Mar 2017 07:07:52 +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: 41da18f9-6f77-4f38-aaf0-63524acddb0e X-Archives-Hash: 4bc3b887a1b2d76b236d6ad0f025a552 commit: 36768e1957168bc19574fdfcd9158f8d8c7aeeeb Author: Brian Dolbec gentoo org> AuthorDate: Thu Mar 9 08:58:10 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Mar 11 02:58:29 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=36768e19 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 35556da..677e19d 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -841,7 +841,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')