follow tornado exception naming change#398
follow tornado exception naming change#398anarcat wants to merge 1 commit intoArchiveTeam:masterfrom
Conversation
SSLCertificateError was never part of the official tornado API and was removed in v5. Instead of relying on that undocumented API, we use the exception from the core `ssl` module which tornado now uses anyways. Closes: ArchiveTeam#384
|
Sounds good to me. It appears that even older versions of Tornado use However, many tests are currently failing for various reasons, so this will have to wait until #393 and the other test failures introduced by the changes between 2.0.1 and 2.0.3 are resolved. I'll hopefully get to that soon. |
SSLCertificateError was never part of the official tornado API and was
removed in v5. Instead of relying on that undocumented API, we use the
exception from the core
sslmodule which tornado now uses anyways.Closes: #384
I remembered to:
developand set to merge intodevelop