Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:catalyst_use commit in: catalyst/base/
Date: Wed, 01 Mar 2017 03:43:15
Message-Id: 1488339739.fd8783cbb805d5eb647ace3380d0b6e15b659003.jmbsvicetto@gentoo
1 commit: fd8783cbb805d5eb647ace3380d0b6e15b659003
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 03:42:19 2017 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 03:42:19 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=fd8783cb
7
8 Fix break caused by a space inside a string instead of outside.
9
10 Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>
11
12 catalyst/base/stagebase.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
16 index 9a36fd3..f0b62d7 100644
17 --- a/catalyst/base/stagebase.py
18 +++ b/catalyst/base/stagebase.py
19 @@ -522,7 +522,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
20
21 def set_action_sequence(self):
22 """Set basic stage1, 2, 3 action sequences"""
23 - self.settings["action_sequence"] = ["unpack"," unpack_snapshot",
24 + self.settings["action_sequence"] = ["unpack", "unpack_snapshot",
25 "setup_confdir", "portage_overlay",
26 "base_dirs", "bind", "chroot_setup", "setup_environment",
27 "run_local", "preclean", "unbind", "clean"]