diff options
author | Hess Chen <hesheng.chen@intel.com> | 2015-06-25 08:08:55 +0000 |
---|---|---|
committer | hchen30 <hchen30@Edk2> | 2015-06-25 08:08:55 +0000 |
commit | e84d2b709b82d2cbcb2b5b0fe2a58858af2ac01b (patch) | |
tree | 9ea678dcba28c51bf479dec4381d22db99d3851d /BaseTools/Source/Python/Ecc/Check.py | |
parent | ce2f5940060c20261a7d22f5ce5c767bb8f298b0 (diff) | |
download | edk2-platforms-e84d2b709b82d2cbcb2b5b0fe2a58858af2ac01b.tar.xz |
BaseTools/Ecc: Fix two bugs for the checkpoint of GUID
a) Fix a bug of displaying wrong format of a GUID
b) Fix a bug of setting wrong exception keyword
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hess Chen <hesheng.chen@intel.com>
Reviewed-by: YangX Li <yangx.li@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17710 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/Python/Ecc/Check.py')
-rw-r--r-- | BaseTools/Source/Python/Ecc/Check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Ecc/Check.py b/BaseTools/Source/Python/Ecc/Check.py index 6c4c90ca78..7932fb3394 100644 --- a/BaseTools/Source/Python/Ecc/Check.py +++ b/BaseTools/Source/Python/Ecc/Check.py @@ -1116,7 +1116,7 @@ class Check(object): """ % (Table.Table, Table.Table, Model, Model)
RecordSet = Table.Exec(SqlCommand)
for Record in RecordSet:
- if not EccGlobalData.gException.IsException(ErrorID, Record[1] + ':' + Record[2]):
+ if not EccGlobalData.gException.IsException(ErrorID, Record[2]):
EccGlobalData.gDb.TblReport.Insert(ErrorID, OtherMsg="The %s value [%s] is used more than one time" % (Name.upper(), Record[2]), BelongsToTable=Table.Table, BelongsToItem=Record[0])
# Naming Convention Check
|