Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/base/
Date: Thu, 09 Mar 2017 09:39:11
Message-Id: 1489052112.f0e2c8e3c7c20287adb159647a78cfb0e0f618d8.dolsen@gentoo
1 commit: f0e2c8e3c7c20287adb159647a78cfb0e0f618d8
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 9 08:58:10 2017 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 9 09:35:12 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f0e2c8e3
7
8 base/stagebase.py: Correctly log the correct function name for unpack_snapshot()
9
10 catalyst/base/stagebase.py | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
14 index 7f0e5b1..0fe3c9e 100644
15 --- a/catalyst/base/stagebase.py
16 +++ b/catalyst/base/stagebase.py
17 @@ -849,7 +849,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
18 target_portdir = normpath(self.settings["chroot_path"] +
19 self.settings["repo_basedir"] + "/" + self.settings["repo_name"])
20 log.info('%s', self.settings['chroot_path'])
21 - log.info('unpack(), target_portdir = %s', target_portdir)
22 + log.info('unpack_snapshot(), target_portdir = %s', target_portdir)
23 if "snapcache" in self.settings["options"]:
24 snapshot_cache_hash_path = pjoin(
25 self.settings['snapshot_cache_path'], 'catalyst-hash')