summaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/engine.py
diff options
context:
space:
mode:
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