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 eb17cab commit f542401Copy full SHA for f542401
src/sage/env.py
@@ -536,7 +536,7 @@ def sage_data_paths(name: str | None) -> set[str]:
536
}
537
paths.add(user_data_dir("sagemath"))
538
paths.add(user_data_dir())
539
- for path in site_data_dir("sagemath", multipath=True).split(':') + site_data_dir(multipath=True).split(':'):
+ for path in site_data_dir("sagemath", multipath=True).split(os.pathsep) + site_data_dir(multipath=True).split(os.pathsep):
540
paths.add(path)
541
else:
542
paths = {path for path in SAGE_DATA_PATH.split(os.pathsep)}
0 commit comments