summaryrefslogtreecommitdiffstats
path: root/scripts/wic
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-09-02 13:58:16 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-03 12:43:31 +0100
commit791a3912d98014105bdb2a8585e4a1b7ae8120b1 (patch)
treebcfb06b795482f6113cfa6b5c967a0bbb9b4bc1c /scripts/wic
parent14b47e22f9b2566320ab6ef103da1501bca129de (diff)
downloadpoky-791a3912d98014105bdb2a8585e4a1b7ae8120b1.tar.gz
wic: fix short variable names
Made short variable names longer and more readable. Fixed pylint warnings "Invalid variable name" and "Invalid argument name". (From OE-Core rev: 872cb0d5d79b26f34e6b35d7be8870d245021be4) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/wic')
-rwxr-xr-xscripts/wic4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/wic b/scripts/wic
index eb252a26ef..7ad2b191c6 100755
--- a/scripts/wic
+++ b/scripts/wic
@@ -62,9 +62,9 @@ def rootfs_dir_to_args(krootfs_dir):
62 Get a rootfs_dir dict and serialize to string 62 Get a rootfs_dir dict and serialize to string
63 """ 63 """
64 rootfs_dir = '' 64 rootfs_dir = ''
65 for k, v in krootfs_dir.items(): 65 for key, val in krootfs_dir.items():
66 rootfs_dir += ' ' 66 rootfs_dir += ' '
67 rootfs_dir += '='.join([k, v]) 67 rootfs_dir += '='.join([key, val])
68 return rootfs_dir.strip() 68 return rootfs_dir.strip()
69 69
70def callback_rootfs_dir(option, opt, value, parser): 70def callback_rootfs_dir(option, opt, value, parser):