summaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/help.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-06-17 14:47:47 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-23 11:47:36 +0100
commita4da21d92f461e85e90a866f4a1da34ba1c9551a (patch)
tree79bbf1c403f08487f4a4c29327fff0e0758dbf7b /scripts/lib/image/help.py
parent4862a4c33a461d0f4dd75843d2f0a8b03a593b05 (diff)
downloadpoky-a4da21d92f461e85e90a866f4a1da34ba1c9551a.tar.gz
wic: code cleanup: superfluous-parens
Removed unncecessary parents after 'if' 'del' and 'print' keywords. Fixed pyling warning: Unnecessary parens after 'xxx' keyword (From OE-Core rev: a64604d11f75973b4c2347fa2669da9889e44013) 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/help.py')
-rw-r--r--scripts/lib/image/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py
index 93211498d5..886437ba60 100644
--- a/scripts/lib/image/help.py
+++ b/scripts/lib/image/help.py
@@ -53,7 +53,7 @@ def wic_help(args, usage_str, subcommands):
53 Subcommand help dispatcher. 53 Subcommand help dispatcher.
54 """ 54 """
55 if len(args) == 1 or not display_help(args[1], subcommands): 55 if len(args) == 1 or not display_help(args[1], subcommands):
56 print(usage_str) 56 print usage_str
57 57
58 58
59def get_wic_plugins_help(): 59def get_wic_plugins_help():