Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3445ff commit eeed6ecCopy full SHA for eeed6ec
clr_loader/ffi/__init__.py
@@ -36,7 +36,10 @@ def load_hostfxr(dotnet_root: Path):
36
except Exception as err:
37
error_report.append(f"Path {hostfxr_path} gave the following error:\n{err}")
38
39
- raise RuntimeError(f"Could not find a suitable hostfxr library in {dotnet_root}. The following paths were scanned:\n\n"+("\n\n".join(error_report)))
+ raise RuntimeError(
40
+ f"Could not find a suitable hostfxr library in {dotnet_root}. The following paths were scanned:\n\n"
41
+ + ("\n\n".join(error_report))
42
+ )
43
44
45
def load_mono(path: Optional[Path] = None):
0 commit comments