summaryrefslogtreecommitdiff
path: root/morphlib/builder.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-02-27 17:17:36 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-02-27 17:17:36 +0000
commit8a4435f71a8a47e9cf3050ad6456cd9949da5958 (patch)
tree04fcc00d75ad0e8a8ad3f369688e6c833621c1b4 /morphlib/builder.py
parentc5fc68fa232e88ec3e5e40aaec619280554886a9 (diff)
downloadmorph-8a4435f71a8a47e9cf3050ad6456cd9949da5958.tar.gz
Make ./check check for long lines (with excptions); fix long lines
Diffstat (limited to 'morphlib/builder.py')
-rw-r--r--morphlib/builder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/builder.py b/morphlib/builder.py
index 3a46cf54..9b55e01f 100644
--- a/morphlib/builder.py
+++ b/morphlib/builder.py
@@ -491,7 +491,8 @@ class SystemBuilder(BlobBuilder):
self.ex.runv(['parted', '-s', image_name, 'mklabel', 'msdos'])
self.ex.runv(['parted', '-s', image_name, 'mkpart', 'primary',
'0%', '100%'])
- self.ex.runv(['parted', '-s', image_name, 'set', '1', 'boot', 'on'])
+ self.ex.runv(['parted', '-s', image_name,
+ 'set', '1', 'boot', 'on'])
# Install first stage boot loader into MBR.
with self.build_watch('install-mbr'):