Skip to content

Commit

Permalink
fixed error in xenoGI check
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-joe-wirth committed Dec 4, 2023
1 parent 27934c1 commit 54f22cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PHANTASM/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ def checkDirectoriesInParam() -> None:
raise NotADirectoryError(ERR_MSG_2)

# check that the xenoGI directory contains the xenoGI.py file
if not os.path.exists(os.path.join(XENOGI_DIR, "xenoGI.py")):
if not os.path.exists(os.path.join(XENOGI_DIR, "xenoGI", "xenoGI.py")):
logger.error(ERR_MSG_2)
raise FileNotFoundError(ERR_MSG_2)

Expand Down

0 comments on commit 54f22cd

Please sign in to comment.