File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ():
You can’t perform that action at this time.
0 commit comments