
When I go to the Categories menu there are no scripts in the dropdown:

Prior to the update everything was working perfectly. :/
This is Windows, and nothing has changed on my end other than installing the newest version of sabnzbd. Everything used to work perfectly. You can see in my screenshot the dropdown to choose a script is blank.sander wrote:Which OS? On Windows, I believe you need to set PATHEXT
And is the executable bit of the script set?
Code: Select all
PATHEXT = os.environ.get('PATHEXT', '').lower().split(';')
if (sabnzbd.WIN32 and os.path.splitext(script)[1].lower() in PATHEXT and \
not (win32api.GetFileAttributes(script) & win32file.FILE_ATTRIBUTE_HIDDEN)) or \
script.endswith('.py') or \
(not sabnzbd.WIN32 and os.access(script, os.X_OK) and not os.path.basename(script).startswith('.')):
lst.append(os.path.basename(script))