diff options
author | Zhijux Fan <zhijux.fan@intel.com> | 2018-11-28 11:12:37 +0800 |
---|---|---|
committer | Feng, Bob C <bob.c.feng@intel.com> | 2019-02-01 11:09:17 +0800 |
commit | 00f86d89ab7039922904d16b499e71aa34f99545 (patch) | |
tree | bab298358aa49918a97290c1af422b424dfbc959 /BaseTools/Source/Python/Common | |
parent | 3a041437c981eac8447eca33a635038661e4faf1 (diff) | |
download | edk2-00f86d89ab7039922904d16b499e71aa34f99545.tar.gz edk2-00f86d89ab7039922904d16b499e71aa34f99545.tar.bz2 edk2-00f86d89ab7039922904d16b499e71aa34f99545.zip |
BaseTools: replace get_bytes_le() to bytes_le
UUID does not have the get_bytes_le() in python3
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com>
Tested-by: Laszlo Ersek <lersek@redhat.com>
Tested-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Common')
-rw-r--r-- | BaseTools/Source/Python/Common/Misc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Common/Misc.py b/BaseTools/Source/Python/Common/Misc.py index 01bd62a9e2..2ef8e07839 100644 --- a/BaseTools/Source/Python/Common/Misc.py +++ b/BaseTools/Source/Python/Common/Misc.py @@ -1180,7 +1180,7 @@ def ParseFieldValue (Value): if Value[0] == '"' and Value[-1] == '"':
Value = Value[1:-1]
try:
- Value = "'" + uuid.UUID(Value).get_bytes_le() + "'"
+ Value = "'" + uuid.UUID(Value).bytes_le + "'"
except ValueError as Message:
raise BadExpression(Message)
Value, Size = ParseFieldValue(Value)
|