summaryrefslogtreecommitdiff
path: root/morphlib/builder.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-03-23 15:05:56 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-03-23 15:05:56 +0000
commite875a0eca59336d429a89994109ef46619c4a1ca (patch)
tree11880a0e9070bd296466c15eab9eb10b639d9dc4 /morphlib/builder.py
parent2679a0f3403926abbba4e6a096c43297a2894b66 (diff)
downloadmorph-e875a0eca59336d429a89994109ef46619c4a1ca.tar.gz
fix overly long lines
Diffstat (limited to 'morphlib/builder.py')
-rw-r--r--morphlib/builder.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/morphlib/builder.py b/morphlib/builder.py
index 6b7a9983..b822c61a 100644
--- a/morphlib/builder.py
+++ b/morphlib/builder.py
@@ -450,7 +450,8 @@ class SystemBuilder(BlobBuilder): # pragma: no cover
def _create_image(self, image_name):
with self.build_watch('create-image'):
- morphlib.fsutils.create_image(self.ex, image_name, self.blob.morph.disk_size)
+ morphlib.fsutils.create_image(self.ex, image_name,
+ self.blob.morph.disk_size)
def _partition_image(self, image_name):
with self.build_watch('partition-image'):
@@ -500,7 +501,8 @@ class SystemBuilder(BlobBuilder): # pragma: no cover
f.write('timeout 1\n')
f.write('label linux\n')
f.write('kernel /boot/vmlinuz\n')
- f.write('append root=/dev/sda1 rootflags=subvol=factory-run init=/sbin/init quiet rw\n')
+ f.write('append root=/dev/sda1 rootflags=subvol=factory-run '
+ 'init=/sbin/init quiet rw\n')
def _create_subvolume_snapshot(self, path, source, target):
with self.build_watch('create-subvolume-snapshot'):