commit: fd8783cbb805d5eb647ace3380d0b6e15b659003
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo
<DOT> org>
AuthorDate: Wed Mar 1 03:42:19 2017 +0000
Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
CommitDate: Wed Mar 1 03:42:19 2017 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=fd8783cb
Fix break caused by a space inside a string instead of outside.
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT>
gentoo.org>
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 9a36fd3..f0b62d7 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -522,7 +522,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
def set_action_sequence(self):
"""Set basic stage1, 2, 3 action sequences"""
- self.settings["action_sequence"] = ["unpack"," unpack_snapshot",
+ self.settings["action_sequence"] = ["unpack", "unpack_snapshot",
"setup_confdir", "portage_overlay",
"base_dirs", "bind", "chroot_setup",
"setup_environment",
"run_local", "preclean", "unbind", "clean"]