Skip to content

Commit 3334396

Browse files
authored
Improve expression in query_cld_folder
1 parent de99296 commit 3334396

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloudinary_cli/utils/api_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def query_cld_folder(folder):
1818

1919
folder = folder.rstrip('/')
2020

21-
expression = Search().expression(f"folder:{folder}/*").with_field("image_analysis").max_results(500)
21+
expression = Search().expression(f"folder:\"{folder}/*\"").with_field("image_analysis").max_results(500)
2222
while next_cursor:
2323
res = expression.execute()
2424

0 commit comments

Comments
 (0)