Hello,
I'm a sabnzbd user, running sabnzbd in docker, specifically the LinuxServer variant.
Trying to use this to push Discord notifications, but I can't get it to successfully run. Calling it from the shell via python sabnzbd-notify.py, I get the following error:
Code: Select all
Traceback (most recent call last):
File "/config/scripts/Notify.py", line 416, in <module>
from apprise import Apprise
File "/config/scripts/Notify/apprise/__init__.py", line 31, in <module>
from .plugins.NotifyBase import NotifyBase
File "/config/scripts/Notify/apprise/plugins/__init__.py", line 23, in <module>
from .NotifyBoxcar import NotifyBoxcar
File "/config/scripts/Notify/apprise/plugins/NotifyBoxcar.py", line 20, in <module>
import requests
File "/config/scripts/Notify/requests/__init__.py", line 53, in <module>
from urllib3.contrib import pyopenssl
File "/config/scripts/Notify/urllib3/contrib/pyopenssl.py", line 53, in <module>
import OpenSSL.SSL
File "/config/scripts/Notify/OpenSSL/__init__.py", line 8, in <module>
from OpenSSL import crypto, SSL
File "/config/scripts/Notify/OpenSSL/SSL.py", line 115, in <module>
if _lib.Cryptography_HAS_SSL_ST:
AttributeError: 'module' object has no attribute 'Cryptography_HAS_SSL_ST'
This looks similar to an error mentioned previously in this thread, which looked like it was a dependency issue that was solved in future commits, however I continue to have this issue.
Fairly confident I am running the latest, with the latest version of the pyOpenSSL dependency too.
Any thoughts?
Cheers.