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 8E55B139083 for ; Wed, 22 Nov 2017 15:52:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3CA2E0EAF; Wed, 22 Nov 2017 15:52:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9FF32E0EAF for ; Wed, 22 Nov 2017 15:52:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A6FE23402FE for ; Wed, 22 Nov 2017 15:52:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 519C1A3CD for ; Wed, 22 Nov 2017 15:52:44 +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: <1511313380.739a1a78513a27b5234fce708acb64211c43cb74.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: 739a1a78513a27b5234fce708acb64211c43cb74 X-VCS-Branch: pending Date: Wed, 22 Nov 2017 15:52:44 +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: a5cb1433-493c-456d-9d00-ad0365262c00 X-Archives-Hash: 18afa9751ff98df7b297b7712a64307a Message-ID: <20171122155244.bbcnbVT5ulGgNNiRgoX-lbvVOWewvvW8Elq_-zvS8FY@z> commit: 739a1a78513a27b5234fce708acb64211c43cb74 Author: Brian Dolbec gentoo org> AuthorDate: Thu Mar 9 08:58:10 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Wed Nov 22 01:16:20 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=739a1a78 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 93c13902..532f0997 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')