From e875a0eca59336d429a89994109ef46619c4a1ca Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Fri, 23 Mar 2012 15:05:56 +0000 Subject: fix overly long lines --- morphlib/builder.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'morphlib/builder.py') 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'): -- cgit v1.2.1