Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7755:417c8ddc98ac
fix: undo last minute edit and try to get make checkin clean.
Fixed admin.py.
Change # noqa: 821 to # noqa: F821 to make ruff ignore undefined
variable in the python 2 branch of the code. Hopefully the flake8
run in CI will accept the change from 821 to F821 and not error with
an undefined variable.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 01 Mar 2024 15:42:24 -0500 |
| parents | 07ce4e4110f5 |
| children | d5d7ecd31864 |
line wrap: on
line source
try: # Python 3+ from ssl import SSLError except (ImportError, AttributeError): # Python 2.5-2.7 from socket import sslerror as SSLError # noqa: F401
