We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9eac49 commit a9927c8Copy full SHA for a9927c8
labscript_profile/create.py
@@ -68,9 +68,9 @@ def compile_connection_table():
68
config.read(default_labconfig_path())
69
70
# The path to the user's connection_table.py script
71
- script_path = config['paths']['connection_table_py']
+ script_path = os.path.expandvars(config['paths']['connection_table_py'])
72
# path to the connection_table.h5 destination
73
- output_h5_path = config['paths']['connection_table_h5']
+ output_h5_path = os.path.expandvars(config['paths']['connection_table_h5'])
74
# create output directory, if needed
75
Path(output_h5_path).parent.mkdir(parents=True, exist_ok=True)
76
# compile the h5 file
0 commit comments