diff options
| author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-06-17 14:47:47 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:47:36 +0100 |
| commit | a4da21d92f461e85e90a866f4a1da34ba1c9551a (patch) | |
| tree | 79bbf1c403f08487f4a4c29327fff0e0758dbf7b /scripts/lib/wic/plugins/source/fsimage.py | |
| parent | 4862a4c33a461d0f4dd75843d2f0a8b03a593b05 (diff) | |
| download | poky-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/wic/plugins/source/fsimage.py')
| -rw-r--r-- | scripts/lib/wic/plugins/source/fsimage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugins/source/fsimage.py b/scripts/lib/wic/plugins/source/fsimage.py index 98f02a1e09..f894e89367 100644 --- a/scripts/lib/wic/plugins/source/fsimage.py +++ b/scripts/lib/wic/plugins/source/fsimage.py | |||
| @@ -62,7 +62,7 @@ class FSImagePlugin(SourcePlugin): | |||
| 62 | 62 | ||
| 63 | msger.debug('Bootimg dir: %s' % bootimg_dir) | 63 | msger.debug('Bootimg dir: %s' % bootimg_dir) |
| 64 | 64 | ||
| 65 | if ('file' not in source_params): | 65 | if 'file' not in source_params: |
| 66 | msger.error("No file specified\n") | 66 | msger.error("No file specified\n") |
| 67 | return | 67 | return |
| 68 | 68 | ||
