diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-06-29 18:01:42 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-02 23:01:49 +0100 |
commit | db43e59f41b6bc19152cd4743585a3217015e272 (patch) | |
tree | 784e8b5d5c2a574db072e144638efda90e8e3604 /scripts/lib/wic/plugins | |
parent | 98912687f15f6d7537746fb38499f739e1a47be9 (diff) | |
download | openembedded-core-db43e59f41b6bc19152cd4743585a3217015e272.tar.gz openembedded-core-db43e59f41b6bc19152cd4743585a3217015e272.tar.bz2 openembedded-core-db43e59f41b6bc19152cd4743585a3217015e272.zip |
wic: Code cleanup: long lines, identation and whitespaces
Fixed pylint warnings bad-continuation, bad-continuation and
line-too-long.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Diffstat (limited to 'scripts/lib/wic/plugins')
-rw-r--r-- | scripts/lib/wic/plugins/source/bootimg-pcbios.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugins/source/bootimg-pcbios.py b/scripts/lib/wic/plugins/source/bootimg-pcbios.py index 6ca68f6e7e..721c524970 100644 --- a/scripts/lib/wic/plugins/source/bootimg-pcbios.py +++ b/scripts/lib/wic/plugins/source/bootimg-pcbios.py @@ -56,7 +56,9 @@ class BootimgPcbiosPlugin(SourcePlugin): msger.error("Unsupported partition table: %s" % cr.ptable_format) if not os.path.exists(mbrfile): - msger.error("Couldn't find %s. If using the -e option, do you have the right MACHINE set in local.conf? If not, is the bootimg_dir path correct?" % mbrfile) + msger.error("Couldn't find %s. If using the -e option, do you " + "have the right MACHINE set in local.conf? If not, " + "is the bootimg_dir path correct?" % mbrfile) full_path = cr._full_path(workdir, disk_name, "direct") msger.debug("Installing MBR on disk %s as %s with size %s bytes" \ |