Skip to content

Commit 9a25677

Browse files
committed
Make base_path <- output_path, for backwards compat
1 parent d615fb5 commit 9a25677

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

plasma/conf_parser.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ def parameters(input_file):
2626
params['user_name'] = getpass.getuser()
2727
base_path = params['fs_path']
2828
output_path = os.path.join(base_path, params['user_name'])
29+
# TODO(KGF): this next line should be deleted at some pt, breaking BC
30+
base_path = output_path
31+
print(output_path)
2932
# TODO(KGF): allow for completely indpendent save/output_path vs. base_path
3033
# configured in conf.yaml. don't assume username subdirectory, or pwd
3134
# save_path = os.environ.get("PWD")

0 commit comments

Comments
 (0)