We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab24a2 commit b127eacCopy full SHA for b127eac
VERSION
@@ -1 +1 @@
1
-1.0.0-develop1
+1.0.0-develop2
plex_image_cleanup.py
@@ -245,7 +245,7 @@ def get_resources(media):
245
if mode == "move":
246
destination_path = restore_dir / local_path.with_suffix(".jpg")
247
msg = f"MOVE: {source_path} --> {destination_path}"
248
- destination_path.parent.mkdir(exist_ok=True)
+ destination_path.parent.mkdir(parents=True, exist_ok=True)
249
source_path.rename(destination_path)
250
elif mode == "remove":
251
msg = f"REMOVE: {source_path}"
0 commit comments