summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/Common/Misc.py
diff options
context:
space:
mode:
authorCarsey, Jaben </o=Intel/ou=Americas01/cn=Workers/cn=Carsey, Jaben>2018-04-11 07:17:20 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2018-04-17 20:48:51 +0800
commit4d3b9389e7f22222b76b874fbef8dd4cf2c8c7ce (patch)
tree507d8b091b6bc4d4c49ae36aa6eb74de94befd1a /BaseTools/Source/Python/Common/Misc.py
parent7ac4250e872424307c87a1565449a52f3e280953 (diff)
downloadedk2-4d3b9389e7f22222b76b874fbef8dd4cf2c8c7ce.tar.gz
edk2-4d3b9389e7f22222b76b874fbef8dd4cf2c8c7ce.tar.bz2
edk2-4d3b9389e7f22222b76b874fbef8dd4cf2c8c7ce.zip
BaseTools: use existing shared variable
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/Common/Misc.py')
-rw-r--r--BaseTools/Source/Python/Common/Misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Common/Misc.py b/BaseTools/Source/Python/Common/Misc.py
index 23c1a4a0b2..5ffd8cd022 100644
--- a/BaseTools/Source/Python/Common/Misc.py
+++ b/BaseTools/Source/Python/Common/Misc.py
@@ -1922,7 +1922,7 @@ class DefaultStore():
return (str(minvalue), self.DefaultStores[str(minvalue)])
def GetMin(self,DefaultSIdList):
if not DefaultSIdList:
- return "STANDARD"
+ return TAB_DEFAULT_STORES_DEFAULT
storeidset = {storeid for storeid, storename in self.DefaultStores.values() if storename in DefaultSIdList}
if not storeidset:
return ""