diff --git a/immich_auto_album.py b/immich_auto_album.py index a266681..f662857 100644 --- a/immich_auto_album.py +++ b/immich_auto_album.py @@ -177,7 +177,7 @@ def expand_to_glob(expr: str) -> str: Returns --------- The original expression if it contained a slash or an asterisk, - otherwise \*\*/\*\\*\/\*\* + otherwise \\*\\*/\\*\\\\*/\\*\\* """ if not '/' in expr and not '*' in expr: glob_expr = f'**/*{expr}*/**'