Skip to content

Commit 064de65

Browse files
committed
A bit better...
1 parent 6d0f58a commit 064de65

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

omv/engines/utils/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ def resolve_paths(path_s):
1616
all_paths.append(g)
1717
path_s = all_paths
1818
else:
19-
path_s = resolve_paths(glob.glob(path_s))
19+
all_paths = []
20+
21+
for g in glob.glob(path_s):
22+
print('Found path:', g)
23+
all_paths.append(g)
24+
path_s = all_paths
25+
2026

2127
return path_s

0 commit comments

Comments
 (0)