Skip to content

Commit 59fd13d

Browse files
committed
wip
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 59dd16e commit 59fd13d

File tree

1 file changed

+1
-1
lines changed
  • cyclonedx_py/_internal/py_interop

1 file changed

+1
-1
lines changed

cyclonedx_py/_internal/py_interop/glob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
def glob(pathname: str, *, root_dir: Optional[str] = None, recursive: bool = False) -> list[str]:
3030
if root_dir is not None:
3131
pathname = join(root_dir, pathname)
32-
files = glob(pathname, recursive=recursive)
32+
files = _glob(pathname, recursive=recursive)
3333
if root_dir is not None:
3434
if not root_dir.endswith(sep):
3535
root_dir += sep

0 commit comments

Comments
 (0)