mirror of
https://xff.cz/git/u-boot/
synced 2025-11-01 19:05:51 +01:00
binman: Use items() instead of iteritems()
Python 3 requires this, and Python 2 allows it. Convert the code over to ensure compatibility with Python 3. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -214,7 +214,7 @@ class TestFunctional(unittest.TestCase):
|
||||
if verbosity is not None:
|
||||
args.append('-v%d' % verbosity)
|
||||
if entry_args:
|
||||
for arg, value in entry_args.iteritems():
|
||||
for arg, value in entry_args.items():
|
||||
args.append('-a%s=%s' % (arg, value))
|
||||
if images:
|
||||
for image in images:
|
||||
|
||||
Reference in New Issue
Block a user