Skip to content

Commit

Permalink
Fix mkdir_rec uri lookup.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Jan 27, 2025
1 parent 1527ab8 commit 689c575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion law/contrib/gfal/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def mkdir_rec(
silent: bool = True,
**kwargs,
) -> bool:
uri: str = self.uri(path, base_name="mkdir", base=base, return_all=False) # type: ignore[assignment] # noqa
uri: str = self.uri(path, base_name=["mkdir_rec", "mkdir"], base=base, return_all=False) # type: ignore[assignment] # noqa
with self.context() as ctx:
try:
logger.debug(f"invoking gfal2 mkdir_rec({uri}, {perm})")
Expand Down

0 comments on commit 689c575

Please sign in to comment.