diff options
Diffstat (limited to 'scripts/wic')
-rwxr-xr-x | scripts/wic | 4 |
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 | ||
70 | def callback_rootfs_dir(option, opt, value, parser): | 70 | def callback_rootfs_dir(option, opt, value, parser): |