diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-09-02 13:58:14 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-03 12:43:30 +0100 |
commit | 1561970e88c988cc8e8d6626749777c1bbd8123e (patch) | |
tree | c3a9fff8bf578eac140dc69a747e777e78e45ece /scripts/lib/wic/imager/baseimager.py | |
parent | e7287e5157eb8a1486b8896ae4c9a050b86562c7 (diff) | |
download | poky-1561970e88c988cc8e8d6626749777c1bbd8123e.tar.gz |
wic: fix pylint warning redefined-builtin
Renamed variables named as Python builtin functions.
(From OE-Core rev: bed98142e3e47ac2862ccf8fe3e4bdeabfc91172)
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/imager/baseimager.py')
-rw-r--r-- | scripts/lib/wic/imager/baseimager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/wic/imager/baseimager.py b/scripts/lib/wic/imager/baseimager.py index 4abcabca4b..acbe948584 100644 --- a/scripts/lib/wic/imager/baseimager.py +++ b/scripts/lib/wic/imager/baseimager.py | |||
@@ -186,7 +186,7 @@ class BaseImageCreator(object): | |||
186 | def print_outimage_info(self): | 186 | def print_outimage_info(self): |
187 | msg = "The new image can be found here:\n" | 187 | msg = "The new image can be found here:\n" |
188 | self.outimage.sort() | 188 | self.outimage.sort() |
189 | for file in self.outimage: | 189 | for path in self.outimage: |
190 | msg += ' %s\n' % os.path.abspath(file) | 190 | msg += ' %s\n' % os.path.abspath(path) |
191 | 191 | ||
192 | msger.info(msg) | 192 | msger.info(msg) |