Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Fix lower cased top node issue in deprecated template reader
Browse files Browse the repository at this point in the history
  • Loading branch information
jochemb committed Aug 8, 2018
1 parent 9e95512 commit 1564d2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def write_study_params(study):
study_params_file.write("STUDY_ID=" + study.ID + "\n")
study_params_file.write("SECURITY_REQUIRED=" + study.sec_req + "\n")
if study.ID != study.name:
root_dir = "\\Private studies\\" if study.sec_req == "Y" else "\\Public studies\\"
root_dir = "\\Private Studies\\" if study.sec_req == "Y" else "\\Public Studies\\"
study_params_file.write("TOP_NODE=" + root_dir + study.name + "\n")


Expand Down

0 comments on commit 1564d2c

Please sign in to comment.