pygpt: Fix typo.
The field name should be BootGUID, not boot_guid.
BUG=none
TEST=make test
Change-Id: I572f3bb030543159d4e9fe58cf3b4896d2548d37
Reviewed-on: https://chromium-review.googlesource.com/1056454
Commit-Ready: Youcheng Syu <youcheng@chromium.org>
Tested-by: Youcheng Syu <youcheng@chromium.org>
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
diff --git a/py/utils/pygpt.py b/py/utils/pygpt.py
index f0cb233..02ed9fa 100755
--- a/py/utils/pygpt.py
+++ b/py/utils/pygpt.py
@@ -1052,7 +1052,7 @@
pmbr = GPT.WriteProtectiveMBR(
args.image_file, args.pmbr, bootcode=bootcode, boot_guid=boot_guid)
- print(pmbr.boot_guid)
+ print(pmbr.BootGUID)
class Legacy(SubCommand):