Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1b1524c

Browse files
committed
fix problems 2
1 parent 33b7e1a commit 1b1524c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

oclp_r/efi_builder/support.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,13 @@ def validate_pathing(self) -> None:
143143
kext_plist_path = Path(kext_path / Path(kext["PlistPath"]))
144144
if not kext_path.exists():
145145
logging.info(self.trans["- Missing kext: {kext_path}"].format(kext_path=kext_path))
146-
raise Exception(f"{self.trans["Missing"]} {kext_path}")
146+
raise Exception(f"{self.trans['Missing']} {kext_path}")
147147
if not kext_binary_path.exists():
148148
logging.info(self.trans["- Missing {kext}'s binary: {kext_binary_path}"].format(kext=kext['BundlePath'], kext_binary_path=kext_binary_path))
149-
raise Exception(f"{self.trans["Missing"]} {kext_binary_path}")
149+
raise Exception(f"{self.trans['Missing']} {kext_binary_path}")
150150
if not kext_plist_path.exists():
151151
logging.info(self.trans["- Missing {kext}'s plist: {kext_plist_path}"].format(kext=kext['BundlePath'], kext_plist_path=kext_plist_path))
152-
raise Exception(f"{self.trans["Missing"]} {kext_plist_path}")
152+
raise Exception(f"{self.trans['Missing']} {kext_plist_path}")
153153

154154
for tool in config_plist["Misc"]["Tools"]:
155155
if not Path(self.constants.opencore_release_folder / Path("EFI/OC/Tools") / Path(tool["Path"])).exists():

0 commit comments

Comments
 (0)