Skip to content

Commit 965f163

Browse files
authored
Merge pull request #573 from esoteric-ephemera/qlaunch-fix
Bugfix in queue launcher
2 parents 18b1292 + 0e7bef9 commit 965f163

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fireworks/queue/queue_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def rapidfire(
232232
if not block_dir.startswith("block_"):
233233
raise ValueError(f"Invalid name {block_dir}, block dirs must start with 'block_")
234234
block_dir = os.path.abspath(os.path.join(launch_dir, block_dir))
235-
os.mkdir(block_dir, exist_ok=True)
235+
os.makedirs(block_dir, exist_ok=True)
236236
elif prev_blocks and not ALWAYS_CREATE_NEW_BLOCK:
237237
block_dir = os.path.abspath(os.path.join(launch_dir, prev_blocks[0]))
238238
l_logger.info(f"Found previous block, using {block_dir}")

0 commit comments

Comments
 (0)