mirror of https://github.com/acidanthera/audk.git
BaseTools/GenerateCapsule.py: Fix inconsistent error formatting
Just add a space between colon and a more detailed error message in two places. Signed-off-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com>
This commit is contained in:
parent
47c1078175
commit
eeddb86aaa
|
@ -580,7 +580,7 @@ if __name__ == '__main__':
|
|||
try:
|
||||
SinglePayloadDescriptor.Validate (args)
|
||||
except Exception as Msg:
|
||||
print ('GenerateCapsule: error:' + str(Msg))
|
||||
print ('GenerateCapsule: error: ' + str(Msg))
|
||||
sys.exit (1)
|
||||
for SinglePayloadDescriptor in PayloadDescriptorList:
|
||||
ImageCapsuleSupport = 0x0000000000000000
|
||||
|
@ -708,7 +708,7 @@ if __name__ == '__main__':
|
|||
try:
|
||||
SinglePayloadDescriptor.Validate (args)
|
||||
except Exception as Msg:
|
||||
print ('GenerateCapsule: error:' + str(Msg))
|
||||
print ('GenerateCapsule: error: ' + str(Msg))
|
||||
sys.exit (1)
|
||||
try:
|
||||
Result = UefiCapsuleHeader.Decode (Buffer)
|
||||
|
|
Loading…
Reference in New Issue