You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sabnzbd-notify - * - ERROR - The engine /config/scripte/Notify.py was not found!
Sabnzbd in Docker
Python 3.9.7
The script works without error message when I change this line in sabnzbd-notify.py 216ff
from: if not (os.path.isfile(NOTIFY_SCRIPT) and os.access(NOTIFY_SCRIPT, os.X_OK)):
to: if (os.path.isfile(NOTIFY_SCRIPT) and os.access(NOTIFY_SCRIPT, os.X_OK)):
or: if not (os.path.isfile(NOTIFY_SCRIPT) or os.access(NOTIFY_SCRIPT, os.X_OK)):
The text was updated successfully, but these errors were encountered:
sabnzbd-notify - * - ERROR - The engine /config/scripte/Notify.py was not found!
The script works without error message when I change this line in sabnzbd-notify.py 216ff
from:
if not (os.path.isfile(NOTIFY_SCRIPT) and os.access(NOTIFY_SCRIPT, os.X_OK)):
to:
if (os.path.isfile(NOTIFY_SCRIPT) and os.access(NOTIFY_SCRIPT, os.X_OK)):
or:
if not (os.path.isfile(NOTIFY_SCRIPT) or os.access(NOTIFY_SCRIPT, os.X_OK)):
The text was updated successfully, but these errors were encountered: