Skip to content

Commit

Permalink
Merge pull request #332 from OpenCOMPES/fix_windows_execution
Browse files Browse the repository at this point in the history
Fix system config path for Windows
  • Loading branch information
rettigl authored Jan 18, 2024
2 parents 29b7fc1 + d0a50e9 commit 35ad468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sed/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def parse_config(
)
elif platform.system() == "Windows":
system_config = str(
Path(os.environ["ALLUSERPROFILE"]).joinpath("sed").joinpath("config.yaml"),
Path(os.environ["ALLUSERSPROFILE"]).joinpath("sed").joinpath("config.yaml"),
)
if Path(system_config).exists():
system_dict = load_config(system_config)
Expand Down

0 comments on commit 35ad468

Please sign in to comment.