summaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/engine.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-06-29 18:01:42 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-02 23:08:38 +0100
commit34172ef8056244a89cccbbc76de91eca7bc8b0c0 (patch)
tree91e551985b03e728e4bd1df6acee44f7dc8c7d22 /scripts/lib/image/engine.py
parent335aa0fee865c23a067562323641bef1dcae687e (diff)
downloadpoky-34172ef8056244a89cccbbc76de91eca7bc8b0c0.tar.gz
wic: Code cleanup: long lines, identation and whitespaces
Fixed pylint warnings bad-continuation, bad-continuation and line-too-long. (From OE-Core rev: db43e59f41b6bc19152cd4743585a3217015e272) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/image/engine.py')
-rw-r--r--scripts/lib/image/engine.py5
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):
236 wks_file = args[0] 236 wks_file = args[0]
237 fullpath = find_canned_image(scripts_path, wks_file) 237 fullpath = find_canned_image(scripts_path, wks_file)
238 if not fullpath: 238 if not fullpath:
239 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 239 print "No image named %s found, exiting. "\
240 "(Use 'wic list images' to list available images, or "\
241 "specify a fully-qualified OE kickstart (.wks) "\
242 "filename)\n" % wks_file
240 sys.exit(1) 243 sys.exit(1)
241 list_canned_image_help(scripts_path, fullpath) 244 list_canned_image_help(scripts_path, fullpath)
242 return True 245 return True