Menu

#47 fatglue.py fails with a single executable

open
nobody
EFI Tools (14)
5
2007-09-12
2007-09-12
No

Running fatglue.py as:

fatglue.py dest.efi source.efi

results in an error from os.path.exists() that NoneType cannot be cooerced to a Unicode string.

Fix:
Change line 17 from
if not os.path.exists(srcfile2):
to
if srcfile2 and not os.path.exists(srcfile2):

Discussion


Log in to post a comment.