summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmorph3
-rw-r--r--morphlib/builder2.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/morph b/morph
index c91aad93..8e99f172 100755
--- a/morph
+++ b/morph
@@ -290,7 +290,8 @@ class Morph(cliapp.Application):
self.msg('Building %s' % artifact.name)
for chunk_artifact in to_be_installed:
- logging.debug('Installing %s' % chunk_artifact.name)
+ logging.debug('Installing %s' %
+ chunk_artifact.name)
self.msg(' Installing %s' % chunk_artifact.name)
handle = lac.get(chunk_artifact)
staging_area.install_artifact(handle)
diff --git a/morphlib/builder2.py b/morphlib/builder2.py
index 65bd143c..8e4c93bc 100644
--- a/morphlib/builder2.py
+++ b/morphlib/builder2.py
@@ -466,7 +466,7 @@ class SystemBuilder(BuilderBase): # pragma: no cover
f.write('label linux\n')
f.write('kernel /boot/vmlinuz\n')
f.write('append root=/dev/vda1 rootflags=subvol=factory-run '
- 'init=/lib/systemd/systemd rw\n')
+ 'init=/lib/systemd/systemd rw\n')
def _create_subvolume_snapshot(self, path, source, target):
logging.debug('Creating subvolume snapshot %s to %s' %