Skip to content

Commit

Permalink
Add missing extension
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-f-cruz committed Nov 4, 2024
1 parent 6e66ac5 commit 8cc4422
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def dump_manifest_config(self, path: Optional[os.PathLike] = None, make_dir: boo
path = (Path(path) if path else Path(watch_config.flag_dir) / f"manifest_{manifest_config.name}.yaml").resolve()
if "manifest" not in path.name:
logger.warning("Prefix " "manifest_" " not found in file name. Appending it.")
path = path.with_name(f"manifest_{path.name}")
path = path.with_name(f"manifest_{path.name}.yaml")

if make_dir and not path.parent.exists():
path.parent.mkdir(parents=True, exist_ok=True)
Expand Down

0 comments on commit 8cc4422

Please sign in to comment.