diff options
author | Carsey, Jaben </o=Intel/ou=Americas01/cn=Workers/cn=Carsey, Jaben> | 2018-04-06 07:14:02 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-04-10 10:05:16 +0800 |
commit | 98120f5fe2199de29c0cce8e92c692b23adf0cf7 (patch) | |
tree | cba80edbbad54736208d40182c7ecdaf0a946f7d /BaseTools/Source/Python/TargetTool | |
parent | 674e2014ce63040880208f2a0494fa1849f28f43 (diff) | |
download | edk2-98120f5fe2199de29c0cce8e92c692b23adf0cf7.tar.gz edk2-98120f5fe2199de29c0cce8e92c692b23adf0cf7.tar.bz2 edk2-98120f5fe2199de29c0cce8e92c692b23adf0cf7.zip |
BaseTools: refactor and remove out of date use of .keys()
this is no longer required to make dictionary objects iterable.
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/TargetTool')
-rw-r--r-- | BaseTools/Source/Python/TargetTool/TargetTool.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/TargetTool/TargetTool.py b/BaseTools/Source/Python/TargetTool/TargetTool.py index ede9713c9b..143b53ec35 100644 --- a/BaseTools/Source/Python/TargetTool/TargetTool.py +++ b/BaseTools/Source/Python/TargetTool/TargetTool.py @@ -80,9 +80,8 @@ class TargetTool(): traceback.print_exception(last_type, last_value, last_tb)
def Print(self):
- KeyList = self.TargetTxtDictionary.keys()
errMsg = ''
- for Key in KeyList:
+ for Key in self.TargetTxtDictionary:
if type(self.TargetTxtDictionary[Key]) == type([]):
print "%-30s = %s" % (Key, ''.join(elem + ' ' for elem in self.TargetTxtDictionary[Key]))
elif self.TargetTxtDictionary[Key] is None:
|