Gentoo Archives: gentoo-catalyst

From: Brian Dolbec <dolsen@g.o>
To: gentoo-catalyst@l.g.o
Subject: [gentoo-catalyst] [PATCH 3/7] base/stagebase.py: Correctly log the correct function name for unpack_snapshot()
Date: Fri, 10 Mar 2017 19:23:12
Message-Id: 20170310112308.1f299f7a.dolsen@gentoo.org
1 From d235c9e45cc72f68a7cf85a5526ef1c27233b234 Mon Sep 17 00:00:00 2001
2 From: Brian Dolbec <dolsen@g.o>
3 Date: Thu, 9 Mar 2017 00:58:10 -0800
4 Subject: [PATCH 3/7] base/stagebase.py: Correctly log the correct function
5 name for unpack_snapshot()
6 To: gentoo-catalyst@l.g.o
7
8 ---
9 catalyst/base/stagebase.py | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
13 index 35556dae..677e19dc 100644
14 --- a/catalyst/base/stagebase.py
15 +++ b/catalyst/base/stagebase.py
16 @@ -841,7 +841,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
17 target_portdir = normpath(self.settings["chroot_path"] +
18 self.settings["repo_basedir"] + "/" + self.settings["repo_name"])
19 log.info('%s', self.settings['chroot_path'])
20 - log.info('unpack(), target_portdir = %s', target_portdir)
21 + log.info('unpack_snapshot(), target_portdir = %s', target_portdir)
22 if "snapcache" in self.settings["options"]:
23 snapshot_cache_hash_path = pjoin(
24 self.settings['snapshot_cache_path'], 'catalyst-hash')
25 --
26 2.12.0
27
28
29
30 --
31 Brian Dolbec <dolsen>