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/image/engine.py | |
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/image/engine.py')
-rw-r--r-- | scripts/lib/image/engine.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py index 92dcc5a4f9..0dc7920967 100644 --- a/scripts/lib/image/engine.py +++ b/scripts/lib/image/engine.py @@ -236,7 +236,10 @@ def wic_list(args, scripts_path, properties_file): wks_file = args[0] fullpath = find_canned_image(scripts_path, wks_file) if not fullpath: - print "No image named %s found, exiting. (Use 'wic list images' to list available images, or specify a fully-qualified OE kickstart (.wks) filename)\n" % wks_file + print "No image named %s found, exiting. "\ + "(Use 'wic list images' to list available images, or "\ + "specify a fully-qualified OE kickstart (.wks) "\ + "filename)\n" % wks_file sys.exit(1) list_canned_image_help(scripts_path, fullpath) return True |