Open NooNameR opened 10 months ago
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 MODE=move
setting
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 guessing 1.0.2 and this branch will be killed off in the near future in favor of the rebranding.
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 python C:\Users\[redacted]\ImageMaid\imagemaid.py --plex [redacted] --url [redacted] --token [redacted] --mode move
it seemed to work without error.
It looks like the pmmutils
repository has gone offline (so my suggested fix there seems to have been lost).
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:
git clone
the repository and fetch the requirements as per the documentation.plex_image_cleanup.py
as you normally would and get a traceback as above.File "/usr/local/lib/python3.11/site-packages/pmmutils/util.py", line 60
. This path might be different depending on where you've installed the requirements to. Edit this file with a text editor.final_path.parent.mkdir(exist_ok=True)
to
final_path.parent.mkdir(exist_ok=True, parents=True)
plex_image_cleanup.py
once more.
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