mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 19:14:58 -05:00
Give the expected filename when loader cannot be found
Otherwise, it quickly gets annoying to figure out the right filename from the information the program outputs. Now it's a quick copy/paste away, no more missing one character.
This commit is contained in:
parent
40e47f3eb3
commit
0dd8eb452b
1 changed files with 1 additions and 1 deletions
|
@ -422,7 +422,7 @@ class qualcomm_sahara():
|
|||
#print("Couldn't find a loader for given hwid and pkhash :(")
|
||||
#exit(0)
|
||||
else:
|
||||
logger.error("Couldn't find a loader for given hwid and pkhash :(")
|
||||
logger.error(f"Couldn't find a loader for given hwid and pkhash ({self.hwidstr}_{self.pkhash[0:16]}_FHPRG.bin) :(")
|
||||
exit(0)
|
||||
with open(fname,"rb") as rf:
|
||||
self.programmer=rf.read()
|
||||
|
|
Loading…
Reference in a new issue