-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing "PIC Restore" folder #28
Comments
Can confirm, same error for me on 1.0.2 running with docker on a windows machine. After downgrading to 1.0.0 is working without a problem |
Can confirm same error for me running 1.0.2, docker on unraid. Running on 1.0.0 or 1.0. working fine. |
Same here, just found this script and v1.0.2 won't make the folders when in 'move' mode on Linux using the local install. (python 3.11) Downgrading to v1.0.1 seems to work as expected though. |
Having the same issue on a local Windows install as well. Time to downgrade I suppose. |
same here and seemingly unable to revert on both develop and latest the same error when using the |
I'm having the same problem. This is not a permissions issue as I have made sure that the /plex folder is accessible and writable. If I manually create a 'PIC Restore' folder, the process does not work as the 'PIC Restore' folder already exists. |
Same issue here, manually creating the folder doesn't help at all. |
Recreated docker using kometateam/imagemaid:develop (which is using version 1.0.3 atm), working fine. |
I'm running a local install directly with Python. Had the same error of missing PIC Restore folder. I git cloned the develop branch and after reworking the command line to use the new branding |
It looks like the Looking at the traceback, the problem is that PIC/ImageMaid is trying to create a directory, without the parent directory/ies existing. You can fix this as follows:
final_path.parent.mkdir(exist_ok=True) to final_path.parent.mkdir(exist_ok=True, parents=True)
|
Version Number
1.0.2
What branch are you on?
master
Describe the Bug
Hey folks, I have upgraded to new
1.0.2
quite recently and started to get this error for a move action (which worked and works on 1.0.0):I'm running Plex Image Cleanup as a container on Unraid:
and my
.env
is:Logs
No response
The text was updated successfully, but these errors were encountered: