nzb-notify icon indicating copy to clipboard operation
nzb-notify copied to clipboard

Notify.py was not found!

Open DunklesKaltesNichts opened this issue 2 years ago • 0 comments

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)):

Screenshot

DunklesKaltesNichts avatar Apr 17 '22 16:04 DunklesKaltesNichts