summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/AutoGen/GenVar.py
diff options
context:
space:
mode:
authorJaben Carsey <jaben.carsey@intel.com>2018-05-18 08:06:52 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2018-06-13 09:02:56 +0800
commitcaf744956d4c8c0ef358bdc3df2cdb10265c2ea8 (patch)
tree2b3f1991e58f949b1fb34a4948a74ca60e4d1dd7 /BaseTools/Source/Python/AutoGen/GenVar.py
parentc14b58614ffb992dfc668966a19becb86614aafc (diff)
downloadedk2-caf744956d4c8c0ef358bdc3df2cdb10265c2ea8.tar.gz
edk2-caf744956d4c8c0ef358bdc3df2cdb10265c2ea8.tar.bz2
edk2-caf744956d4c8c0ef358bdc3df2cdb10265c2ea8.zip
BaseTools: Cleanup unneeded code
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/AutoGen/GenVar.py')
-rw-r--r--BaseTools/Source/Python/AutoGen/GenVar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/AutoGen/GenVar.py b/BaseTools/Source/Python/AutoGen/GenVar.py
index 2eab278d68..3675be8de9 100644
--- a/BaseTools/Source/Python/AutoGen/GenVar.py
+++ b/BaseTools/Source/Python/AutoGen/GenVar.py
@@ -75,7 +75,7 @@ class VariableMgr(object):
data = value_list[0]
value_list = []
for data_byte in pack(data_flag,int(data,16) if data.upper().startswith('0X') else int(data)):
- value_list += [hex(unpack("B",data_byte)[0])]
+ value_list.append(hex(unpack("B",data_byte)[0]))
newvalue[int(item.var_offset,16) if item.var_offset.upper().startswith("0X") else int(item.var_offset)] = value_list
try:
newvaluestr = "{" + ",".join(VariableMgr.assemble_variable(newvalue)) +"}"